-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
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
[Java] fix javadoc configuration #3302
Conversation
👍 Thanks for opening this issue! The team will review the labels and make any necessary changes. |
8dd7e8e
to
9ba5cf1
Compare
@@ -12,6 +12,7 @@ if [ "$NODE_INDEX" = "1" ]; then | |||
#cp CI/pom.xml.circleci pom.xml | |||
java -version | |||
mvn --quiet verify -Psamples.circleci | |||
mvn --quiet javadoc:javadoc -Psamples.circleci |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discussed with @wing328 on Gitter, this is a way to check that Javadoc can be built
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CircleCI failure is not related to this PR
Not fixed for sbt.
Version 4.3.1 |
Fixes #3299.
The special javadoc tag
@http.response.details
needs to be declared correctly, so that the javadoc can be built.For maven, this PR changes where the
<configuration>
block is added.It was inside the
<execution>
bloc, but the example in the documetation (Configuring Custom Javadoc Tags) adds it directly in the<plugin>
bloc.For gradle, the javadoc page do not really mention the
tags
option, butGRADLE-1563 does. See also this question on stackoverflow.