Repository: incubator-beam Updated Branches: refs/heads/master b2f69504a -> a829d9caf
[BEAM-242] Set javadoc less strict around missing return or param statements Project: http://git-wip-us.apache.org/repos/asf/incubator-beam/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-beam/commit/f5e307ef Tree: http://git-wip-us.apache.org/repos/asf/incubator-beam/tree/f5e307ef Diff: http://git-wip-us.apache.org/repos/asf/incubator-beam/diff/f5e307ef Branch: refs/heads/master Commit: f5e307efa8c8d35e9eea46063c16d8f3044634b5 Parents: b2f6950 Author: Jean-Baptiste Onofré <[email protected]> Authored: Tue May 31 21:46:46 2016 +0200 Committer: Davor Bonaci <[email protected]> Committed: Tue May 31 18:54:21 2016 -0700 ---------------------------------------------------------------------- examples/java8/pom.xml | 4 +--- runners/flink/examples/pom.xml | 4 +--- runners/flink/runner/pom.xml | 4 +--- 3 files changed, 3 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/f5e307ef/examples/java8/pom.xml ---------------------------------------------------------------------- diff --git a/examples/java8/pom.xml b/examples/java8/pom.xml index 8727f8d..b082092 100644 --- a/examples/java8/pom.xml +++ b/examples/java8/pom.xml @@ -39,13 +39,11 @@ <build> <plugins> - <!-- Disable javadoc for now. - TODO: this section should be removed as soon as possible. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> - <skip>true</skip> + <additionalparam>-Xdoclint:missing</additionalparam> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/f5e307ef/runners/flink/examples/pom.xml ---------------------------------------------------------------------- diff --git a/runners/flink/examples/pom.xml b/runners/flink/examples/pom.xml index 47e0167..8dff21b 100644 --- a/runners/flink/examples/pom.xml +++ b/runners/flink/examples/pom.xml @@ -92,13 +92,11 @@ </plugin> --> - <!-- Disable javadoc for now. - TODO: this section should be removed as soon as possible. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> - <skip>true</skip> + <additionalparam>-Xdoclint:missing</additionalparam> </configuration> </plugin> http://git-wip-us.apache.org/repos/asf/incubator-beam/blob/f5e307ef/runners/flink/runner/pom.xml ---------------------------------------------------------------------- diff --git a/runners/flink/runner/pom.xml b/runners/flink/runner/pom.xml index 82104fd..6b628f1 100644 --- a/runners/flink/runner/pom.xml +++ b/runners/flink/runner/pom.xml @@ -151,13 +151,11 @@ </plugin> --> - <!-- Disable javadoc for now. - TODO: this section should be removed as soon as possible. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> - <skip>true</skip> + <additionalparam>-Xdoclint:missing</additionalparam> </configuration> </plugin>
