File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 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
33## Usage:
44
55``` 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"
99```
1010
1111## Modules
Original file line number Diff line number Diff line change @@ -14,19 +14,19 @@ inThisBuild(
1414)
1515
1616lazy val javaNetUrl = project
17- .withId(" java-net-url" )
17+ .withId(" java-net-url-stubs " )
1818 .in(file(" java-net-url" ))
1919 .enablePlugins(ScalaNativePlugin , ScalaNativeJUnitPlugin )
2020 .settings(withTestUtils)
2121
2222lazy val javaSecurity = project
2323 .in(file(" java-security" ))
24- .withId(" java-security" )
24+ .withId(" java-security-stubs " )
2525 .enablePlugins(ScalaNativePlugin , ScalaNativeJUnitPlugin )
2626 .settings(withTestUtils)
2727
2828lazy val javaxSecurity = project
29- .withId(" javax-security" )
29+ .withId(" javax-security-stubs " )
3030 .in(file(" javax-security" ))
3131 .enablePlugins(ScalaNativePlugin )
3232
You can’t perform that action at this time.
0 commit comments