You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2019/02/03 22:27:19 UTC

[commons-pool] branch master updated: Remove obsolete profile and make site build run on Java 11. Needs commons-parent 48.

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-pool.git


The following commit(s) were added to refs/heads/master by this push:
     new 4e53dd8  Remove obsolete profile and make site build run on Java 11. Needs commons-parent 48.
4e53dd8 is described below

commit 4e53dd81247ccd3c5a7a35f89700f7a4c57906f2
Author: Gary Gregory <gg...@rocketsoftware.com>
AuthorDate: Sun Feb 3 17:27:17 2019 -0500

    Remove obsolete profile and make site build run on Java 11. Needs
    commons-parent 48.
---
 pom.xml | 51 +++------------------------------------------------
 1 file changed, 3 insertions(+), 48 deletions(-)

diff --git a/pom.xml b/pom.xml
index a1def9a..b1213cf 100644
--- a/pom.xml
+++ b/pom.xml
@@ -179,6 +179,8 @@
     <commons.release.isDistModule>true</commons.release.isDistModule>
     <commons.releaseManagerName>Gary Gregory</commons.releaseManagerName>    
     <commons.releaseManagerKey>86fdc7e2a11262cb</commons.releaseManagerKey>
+    
+    <commons.japicmp.version>0.13.0</commons.japicmp.version>
   </properties> 
 
   <build>
@@ -335,10 +337,7 @@
           <reportSets>
             <reportSet>
               <reports>
-<!-- This is the only way I could find to skip generating this report -->
-<!-- Version 0.11.1 throws an exception because it cannot find a Geronimo class -->
-<!-- Version 0.12.0 throws an NullPointerException because it seems Maven did not inject the report Mojo with any values-->            
-<!--               <report>cmp-report</report> -->
+               <report>cmp-report</report>
               </reports>
             </reportSet>
           </reportSets>
@@ -363,50 +362,6 @@
     
   <profiles>
     <profile>
-      <id>setup-checkout</id>
-      <activation>
-        <file>
-          <missing>site-content</missing>
-        </file>
-      </activation>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-antrun-plugin</artifactId>
-            <version>1.8</version>
-            <executions>
-              <execution>
-                <id>prepare-checkout</id>
-                <phase>pre-site</phase>
-                <goals>
-                  <goal>run</goal>
-                </goals>
-                <configuration>
-                  <tasks>
-                    <exec executable="svn">
-                      <arg line="checkout --depth immediates ${commons.scmPubUrl} ${commons.scmPubCheckoutDirectory}" />
-                    </exec>
-    
-                    <exec executable="svn">
-                      <arg line="update --set-depth exclude ${commons.scmPubCheckoutDirectory}/javadocs" />
-                    </exec>
-  
-                    <pathconvert pathsep=" " property="dirs">
-                      <dirset dir="${commons.scmPubCheckoutDirectory}" includes="*" />
-                    </pathconvert>
-                    <exec executable="svn">
-                      <arg line="update --set-depth infinity ${dirs}" />
-                    </exec>
-                  </tasks>
-                </configuration>
-              </execution>
-            </executions>
-          </plugin>
-        </plugins>
-      </build>
-    </profile>
-    <profile>
       <id>java9</id>
       <activation>
         <jdk>9</jdk>