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 2020/02/18 09:12:40 UTC

[commons-geometry] branch master updated (0d064e4 -> 382e733)

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-geometry.git.


    from 0d064e4  Update PMD rules
     new 751eff9  Update spotbugs dependency for java 13 support.
     new 6a6b35c  Remove jxr version control.
     new 382e733  Remove whitespace

The 3 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:
 commons-geometry-spherical/pom.xml |  2 +-
 pom.xml                            | 16 ++++++++++------
 2 files changed, 11 insertions(+), 7 deletions(-)


[commons-geometry] 03/03: Remove whitespace

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-geometry.git

commit 382e73386ee3ec09ee96c2d083873d6e47bddb7a
Author: Alex Herbert <a....@sussex.ac.uk>
AuthorDate: Tue Feb 18 08:33:38 2020 +0000

    Remove whitespace
---
 commons-geometry-spherical/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commons-geometry-spherical/pom.xml b/commons-geometry-spherical/pom.xml
index 0ec6e5b..a22f9fd 100644
--- a/commons-geometry-spherical/pom.xml
+++ b/commons-geometry-spherical/pom.xml
@@ -68,7 +68,7 @@
       <type>test-jar</type>
       <scope>test</scope>
     </dependency>
-    
+
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-rng-client-api</artifactId>


[commons-geometry] 01/03: Update spotbugs dependency for java 13 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-geometry.git

commit 751eff997d8799f3e34489c394f3f0f7e627c800
Author: Alex Herbert <a....@sussex.ac.uk>
AuthorDate: Tue Feb 18 08:31:08 2020 +0000

    Update spotbugs dependency for java 13 support.
    
    Added spotbugs dependency to use 4.0.0
---
 pom.xml | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 076e2c5..024f982 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,8 +61,10 @@
     <!-- Workaround to avoid duplicating config files. -->
     <geometry.parent.dir>${basedir}</geometry.parent.dir>
 
-    <!-- Version fix to support Java 11 site generation using parent-48 -->
-    <commons.spotbugs.version>3.1.11</commons.spotbugs.version>
+    <commons.spotbugs.version>3.1.12</commons.spotbugs.version>
+    <!-- Required for Java 13 build -->
+    <commons.spotbugs.dep.version>4.0.0</commons.spotbugs.dep.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. -->
@@ -230,6 +232,13 @@
         <groupId>com.github.spotbugs</groupId>
         <artifactId>spotbugs-maven-plugin</artifactId>
         <version>${commons.spotbugs.version}</version>
+        <dependencies>
+          <dependency>
+            <groupId>com.github.spotbugs</groupId>
+            <artifactId>spotbugs</artifactId>
+            <version>${commons.spotbugs.dep.version}</version>
+          </dependency>
+        </dependencies>
         <configuration>
           <threshold>Normal</threshold>
           <effort>Default</effort>


[commons-geometry] 02/03: Remove jxr version control.

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-geometry.git

commit 6a6b35c2ed88ce4b6b9cedba4644b22a216da346
Author: Alex Herbert <a....@sussex.ac.uk>
AuthorDate: Tue Feb 18 08:32:50 2020 +0000

    Remove jxr version control.
    
    The project contains no java 9 modules so there is no requirement to
    restrict JXR to a version that does not fork the build.
---
 pom.xml | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/pom.xml b/pom.xml
index 024f982..b51eb2f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -65,11 +65,6 @@
     <!-- Required for Java 13 build -->
     <commons.spotbugs.dep.version>4.0.0</commons.spotbugs.dep.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>
-
     <commons.jacoco.haltOnFailure>false</commons.jacoco.haltOnFailure>
 
     <commons.site.path>geometry</commons.site.path>