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
javacOptions in unidoc are passed as options to javadoc
If javacOptions in unidoc contains options like -target 1.8, javadoc will fail because -target is not a valid option to javadoc.
javacOptions in unidoc
-target 1.8
-target
javadoc
Should we introduce a javadocOptions to use instead?
javadocOptions
The text was updated successfully, but these errors were encountered:
I fixed this issue in my own repo here: https://github.com/delta-io/connectors/commit/9a0b8648e38fca1eeaf7ec87d9781dccef2b02c6
Compile / doc / javacOptions := (JavaUnidoc / unidoc / javacOptions).value,
Sorry, something went wrong.
No branches or pull requests
javacOptions in unidoc are passed as options to javadoc
If
javacOptions in unidoc
contains options like-target 1.8
, javadoc will fail because-target
is not a valid option tojavadoc
.Should we introduce a
javadocOptions
to use instead?The text was updated successfully, but these errors were encountered: