[
https://issues.apache.org/jira/browse/BEAM-6973?focusedWorklogId=222390&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-222390
]
ASF GitHub Bot logged work on BEAM-6973:
----------------------------------------
Author: ASF GitHub Bot
Created on: 03/Apr/19 16:26
Start Date: 03/Apr/19 16:26
Worklog Time Spent: 10m
Work Description: udim commented on pull request #8200: [BEAM-6973]
disable doclint missing
URL: https://github.com/apache/beam/pull/8200#discussion_r271826755
##########
File path:
buildSrc/src/main/groovy/org/apache/beam/gradle/BeamModulePlugin.groovy
##########
@@ -756,7 +756,11 @@ class BeamModulePlugin implements Plugin<Project> {
project.checkstyle { toolVersion = "8.7" }
// Configures javadoc plugin and ensure check runs javadoc.
- project.tasks.withType(Javadoc) { options.encoding = 'UTF-8' }
+ project.tasks.withType(Javadoc) {
+ options.encoding = 'UTF-8'
+ options.addStringOption('Xdoclint:all', '-quiet')
+ options.addStringOption('Xdoclint:-missing', '-quiet')
Review comment:
I think the cleanest is to put a single
`options.addBooleanOption('Xdoclint:-missing', true)` line here, and to remove
the doclint options from the aggregation task. The doclint option setting here
should also apply to the aggregation task.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 222390)
Time Spent: 1h (was: 50m)
> Quieten javadoc generation
> --------------------------
>
> Key: BEAM-6973
> URL: https://issues.apache.org/jira/browse/BEAM-6973
> Project: Beam
> Issue Type: Improvement
> Components: build-system
> Reporter: Michael Luckey
> Assignee: Michael Luckey
> Priority: Major
> Time Spent: 1h
> Remaining Estimate: 0h
>
> javadoc linter complains about lots of missing 'param' and 'return' tags.
> This clutters logs and might hide more important things.
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)