Repository: incubator-htrace Updated Branches: refs/heads/master c8e8cb9a1 -> f52ea334d
HTRACE-262 Temporarily suppress doclint for Java 8 to prevent build failure Project: http://git-wip-us.apache.org/repos/asf/incubator-htrace/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-htrace/commit/f52ea334 Tree: http://git-wip-us.apache.org/repos/asf/incubator-htrace/tree/f52ea334 Diff: http://git-wip-us.apache.org/repos/asf/incubator-htrace/diff/f52ea334 Branch: refs/heads/master Commit: f52ea334d3b79cb58483c1a85abab4a6480d8200 Parents: c8e8cb9 Author: Elliott Clark <[email protected]> Authored: Mon Sep 21 23:30:56 2015 -0700 Committer: Elliott Clark <[email protected]> Committed: Tue Sep 22 18:58:51 2015 -0400 ---------------------------------------------------------------------- pom.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/f52ea334/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 42e19ca..aaa8930 100644 --- a/pom.xml +++ b/pom.xml @@ -355,5 +355,22 @@ language governing permissions and limitations under the License. --> </plugins> </build> </profile> + <profile> + <id>java8</id> + <activation> + <jdk>1.8</jdk> + </activation> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <additionalparam>-Xdoclint:none</additionalparam> + </configuration> + </plugin> + </plugins> + </build> + </profile> </profiles> </project>
