-
Notifications
You must be signed in to change notification settings - Fork 19
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
Enable Javadoc checks for src/test
directories
#871
Enable Javadoc checks for src/test
directories
#871
Conversation
@@ -633,6 +633,7 @@ task allJavadoc(type: Javadoc, group: 'Documentation') { | |||
project(':checker-qual').sourceSets.main.allJava, | |||
project(':checker').sourceSets.main.allJava, | |||
project(':framework').sourceSets.main.allJava, | |||
project(':framework').sourceSets.test.allJava, |
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.
This is great and reveals 14 errors in javadoc!
Should the same be done for :checker
?
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.
Sounds good to me! I will udpate the gradle file.
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.
There is also dataflow/src/test
, checker/src/testannotations
, and checker-util/src/test
.
Please also fix the javadoc errors revealed by the new check.
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.
Okay, sounds good.
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.
Maybe framework-test/src/test as well?
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.
I will leave do checker/src/testannotations
later in a new PR. Looks like we need to define the source set for testannotations folder.
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.
Thanks for all the cleanups!
src/test
directories
See discussion in #827 (comment)