You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2019/06/19 10:31:07 UTC

[commons-rng] branch master updated (ae1f49c -> 79924f6)

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

aherbert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git.


    from ae1f49c  RNG-100: Track changes.
     new f75eb23  Upgrade parent to 48.
     new 79924f6  Downgrade org.apache.felix:maven-bundle-plugin for JDK 7 support.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 pom.xml | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)


[commons-rng] 01/02: Upgrade parent to 48.

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit f75eb23209e3b1545878ea2ac20e65613ccca0f2
Author: aherbert <ah...@apache.org>
AuthorDate: Fri May 17 10:41:20 2019 +0100

    Upgrade parent to 48.
    
    Removed versions superseded by the parent POM.
    
    Downgrade JXR from parent-48 v3.0.0 to 2.5 for multi-module site build.
---
 pom.xml | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index f62215c..5176486 100644
--- a/pom.xml
+++ b/pom.xml
@@ -19,7 +19,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-parent</artifactId>
-    <version>47</version>
+    <version>48</version>
   </parent>
 
   <modelVersion>4.0.0</modelVersion>
@@ -117,11 +117,13 @@
     <!-- Workaround to avoid duplicating config files. -->
     <rng.parent.dir>${basedir}</rng.parent.dir>
 
-    <!-- Version fix to support Java 11 site generation using parent-47 -->
+    <!-- Version fix to support Java 11 site generation using parent-48 -->
     <commons.spotbugs.version>3.1.11</commons.spotbugs.version>
+    <!-- Fix to avoid JXR 3.0.0 forking the lifecycle phase 'compile' during site report
+       jxr:aggregate. If compile is forked it fails when building the Java 9 modules that
+       depend on other packages. -->
+    <commons.jxr.version>2.5</commons.jxr.version>
 
-    <!-- Jacoco version fix to support Java 8 & 11 using parent-47 -->
-    <commons.jacoco.version>0.8.3</commons.jacoco.version>
     <commons.jacoco.classRatio>0.96</commons.jacoco.classRatio>
     <commons.jacoco.instructionRatio>0.8</commons.jacoco.instructionRatio>
     <commons.jacoco.methodRatio>0.8</commons.jacoco.methodRatio>
@@ -278,7 +280,6 @@
       </plugin>
       <plugin>
         <artifactId>maven-assembly-plugin</artifactId>
-        <version>2.4</version>
         <configuration>
           <skipAssembly>true</skipAssembly>
         </configuration>


[commons-rng] 02/02: Downgrade org.apache.felix:maven-bundle-plugin for JDK 7 support.

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 79924f6d5fc17da8d8faeeab85b732764868d944
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sat May 18 12:56:38 2019 +0100

    Downgrade org.apache.felix:maven-bundle-plugin for JDK 7 support.
---
 pom.xml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/pom.xml b/pom.xml
index 5176486..5ee356b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -123,6 +123,8 @@
        jxr:aggregate. If compile is forked it fails when building the Java 9 modules that
        depend on other packages. -->
     <commons.jxr.version>2.5</commons.jxr.version>
+    <!-- Fix to build on JDK 7: version 4.0.0 requires Java 8. -->
+    <commons.felix.version>3.5.1</commons.felix.version>
 
     <commons.jacoco.classRatio>0.96</commons.jacoco.classRatio>
     <commons.jacoco.instructionRatio>0.8</commons.jacoco.instructionRatio>