File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ Scala Native implementation of Java stdlib components removed from the core Scal
3
3
## Usage:
4
4
5
5
``` scala
6
- libraryDependencies += " org.scala-native" %%% " java-net-url" % " 1.0.0"
7
- libraryDependencies += " org.scala-native" %%% " java-security" % " 1.0.0"
8
- libraryDependencies += " org.scala-native" %%% " javax-security" % " 1.0.0"
6
+ libraryDependencies += " org.scala-native" %%% " java-net-url-stubs " % " 1.0.0"
7
+ libraryDependencies += " org.scala-native" %%% " java-security-stubs " % " 1.0.0"
8
+ libraryDependencies += " org.scala-native" %%% " javax-security-stubs " % " 1.0.0"
9
9
```
10
10
11
11
## Modules
Original file line number Diff line number Diff line change @@ -14,19 +14,19 @@ inThisBuild(
14
14
)
15
15
16
16
lazy val javaNetUrl = project
17
- .withId(" java-net-url" )
17
+ .withId(" java-net-url-stubs " )
18
18
.in(file(" java-net-url" ))
19
19
.enablePlugins(ScalaNativePlugin , ScalaNativeJUnitPlugin )
20
20
.settings(withTestUtils)
21
21
22
22
lazy val javaSecurity = project
23
23
.in(file(" java-security" ))
24
- .withId(" java-security" )
24
+ .withId(" java-security-stubs " )
25
25
.enablePlugins(ScalaNativePlugin , ScalaNativeJUnitPlugin )
26
26
.settings(withTestUtils)
27
27
28
28
lazy val javaxSecurity = project
29
- .withId(" javax-security" )
29
+ .withId(" javax-security-stubs " )
30
30
.in(file(" javax-security" ))
31
31
.enablePlugins(ScalaNativePlugin )
32
32
You can’t perform that action at this time.
0 commit comments