We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00d920f commit c155532Copy full SHA for c155532
build.sbt
@@ -37,7 +37,13 @@ lazy val xml = crossProject.in(file("."))
37
file(jarPath)
38
-> url("http://docs.oracle.com/javase/8/docs/api")
39
)
40
- } getOrElse(Map.empty)
+ } getOrElse {
41
+ // If everything fails, jam in the Java 9 base module.
42
+ Map(
43
+ file("/modules/java.base")
44
+ -> url("http://docs.oracle.com/javase/9/docs/api")
45
+ )
46
+ }
47
}
48
49
.jvmSettings(
0 commit comments