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 5436f2a commit 7a2fc58Copy full SHA for 7a2fc58
build.sbt
@@ -37,8 +37,8 @@ val core = project.disablePlugins(BintrayPlugin).settings(
37
apiMappings ++= {
38
// WORKAROUND https://github.com/scala/bug/issues/9311
39
// from https://stackoverflow.com/a/31322970/463761
40
- sys.props("sun.boot.class.path")
41
- .split(java.io.File.pathSeparator)
+ sys.props.get("sun.boot.class.path").toList
+ .flatMap(_.split(java.io.File.pathSeparator))
42
.collectFirst { case str if str.endsWith(java.io.File.separator + "rt.jar") =>
43
file(str) -> url("http://docs.oracle.com/javase/8/docs/api/index.html")
44
}
0 commit comments