You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by cl...@apache.org on 2015/09/04 16:06:42 UTC

[1/2] activemq-artemis git commit: Adding -Xdoclint:none back and requiring java8 only for the release profile

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 <cl...@apache.org>
Authored: Fri Sep 4 09:58:44 2015 -0400
Committer: Clebert Suconic <cl...@apache.org>
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


[2/2] activemq-artemis git commit: This closes #156 javadoc build on release

Posted by cl...@apache.org.
This closes #156 javadoc build on release


Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/e967cccc
Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/e967cccc
Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/e967cccc

Branch: refs/heads/master
Commit: e967ccccc89708292fd3fd4bfe7ca3c99e89f34f
Parents: aaf2fc9 76288a3
Author: Clebert Suconic <cl...@apache.org>
Authored: Fri Sep 4 10:06:26 2015 -0400
Committer: Clebert Suconic <cl...@apache.org>
Committed: Fri Sep 4 10:06:26 2015 -0400

----------------------------------------------------------------------
 pom.xml | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
----------------------------------------------------------------------