We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The current Javadocs for JDK 11 even require the module name in the URL:
java.base
https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/time/Duration.html
The current mapping issued by this plugin lacks the module name and creates
https://docs.oracle.com/en/java/javase/11/docs/api/java/time/Duration.html
The text was updated successfully, but these errors were encountered:
Alright, as most JDK classes live in java.base I can overwrite the plugin's default URL with
.settings( com.thoughtworks.sbtApiMappings.BootstrapApiMappings.autoImport.bootstrapJavadocURL := url("https://docs.oracle.com/en/java/javase/11/docs/api/java.base") )
but that won't solve linking to eg. java.util.logging.Logger.
java.util.logging.Logger
Sorry, something went wrong.
This fix in Scaladoc tries to sort out this problem in a different context scala/scala#8663 driven by scala/scala-xml#384
9954128
No branches or pull requests
The current Javadocs for JDK 11 even require the module name in the URL:
java.base
:https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/time/Duration.html
The current mapping issued by this plugin lacks the module name and creates
https://docs.oracle.com/en/java/javase/11/docs/api/java/time/Duration.html
The text was updated successfully, but these errors were encountered: