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 2022/02/12 09:35:47 UTC

[commons-collections] branch master updated (6a3dabb -> c68c4b2)

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


    from 6a3dabb  Bump checkstyle from 9.2.1 to 9.3 #277
     new 56d15a4  Use default goal in github action
     new c68c4b2  Change clirr to japicmp for binary compatibility check

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:
 .github/workflows/maven.yml | 3 ++-
 pom.xml                     | 5 ++++-
 2 files changed, 6 insertions(+), 2 deletions(-)

[commons-collections] 01/02: Use default goal in github action

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

commit 56d15a469df88d4e4b59169701640277b5a963a7
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sat Feb 12 09:14:06 2022 +0000

    Use default goal in github action
    
    Effectively changes from 'package' to 'verify' with additional
    checkstyle and javadoc checks.
---
 .github/workflows/maven.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 91f44c2..d3e6984 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -44,4 +44,5 @@ jobs:
         distribution: adopt
         java-version: ${{ matrix.java }}
     - name: Build with Maven
-      run: mvn -V package --file pom.xml --no-transfer-progress
+      # Use the default goal
+      run: mvn -V --file pom.xml --no-transfer-progress

[commons-collections] 02/02: Change clirr to japicmp for binary compatibility check

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

commit c68c4b2c72b9c1dd00a93d7bab402fad9ee73e26
Author: Alex Herbert <ah...@apache.org>
AuthorDate: Sat Feb 12 09:22:27 2022 +0000

    Change clirr to japicmp for binary compatibility check
---
 pom.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 1470762..549bcc8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -588,6 +588,9 @@
     <commons.jacoco.version>0.8.7</commons.jacoco.version>
     <commons.junit.version>5.8.2</commons.junit.version>
 
+    <!-- Override commons parent version to allow build on java 17 -->
+    <commons.japicmp.version>0.15.4</commons.japicmp.version>
+
     <!--Commons Release Plugin -->
     <commons.bc.version>4.4</commons.bc.version>
     <commons.release.isDistModule>true</commons.release.isDistModule>
@@ -598,7 +601,7 @@
 
 
   <build>
-    <defaultGoal>clean verify apache-rat:check checkstyle:check clirr:check javadoc:javadoc</defaultGoal>
+    <defaultGoal>clean verify apache-rat:check checkstyle:check japicmp:cmp javadoc:javadoc</defaultGoal>
     <plugins>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>