Repository: activemq-artemis Updated Branches: refs/heads/master aaf2fc9b1 -> e967ccccc
Adding -Xdoclint:none back and requiring java8 only for the release profile Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/76288a3a Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/76288a3a Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/76288a3a Branch: refs/heads/master Commit: 76288a3ad9f468332cba2580b63cb0da79b6ccc3 Parents: aaf2fc9 Author: Clebert Suconic <[email protected]> Authored: Fri Sep 4 09:58:44 2015 -0400 Committer: Clebert Suconic <[email protected]> Committed: Fri Sep 4 10:01:25 2015 -0400 ---------------------------------------------------------------------- pom.xml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/76288a3a/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index a2fb5b5..fd23bc9 100644 --- a/pom.xml +++ b/pom.xml @@ -571,6 +571,38 @@ <skipStyleCheck>false</skipStyleCheck> <skipLicenseCheck>false</skipLicenseCheck> </properties> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-enforcer-plugin</artifactId> + <version>1.4</version> + <executions> + <execution> + <id>enforce-java</id> + <goals> + <goal>enforce</goal> + </goals> + <configuration> + <rules> + <!-- we need java8 when building the release --> + <requireJavaVersion> + <version>1.8.0</version> + </requireJavaVersion> + </rules> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-javadoc-plugin</artifactId> + <configuration> + <additionalparam>-Xdoclint:none</additionalparam> + </configuration> + </plugin> + </plugins> + </build> </profile> <profile> <!-- tests is the profile we use to run the entire testsuite
