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


The following commit(s) were added to refs/heads/master by this push:
     new e906f65  Breaking binary compatibility should break the build instead 
of generating a report one might skip reading, especially for PRs.
e906f65 is described below

commit e906f6535e796dbc5311052b56ce18f5c784fa8f
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jan 2 10:04:06 2021 -0500

    Breaking binary compatibility should break the build instead of
    generating a report one might skip reading, especially for PRs.
---
 .github/workflows/maven.yml | 2 +-
 pom.xml                     | 6 +-----
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index ab5b7fb..b5a0f0f 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -45,4 +45,4 @@ jobs:
       with:
         java-version: ${{ matrix.java }}
     - name: Build with Maven
-      run: mvn -V package --file pom.xml --no-transfer-progress
+      run: mvn -V --file pom.xml --no-transfer-progress
diff --git a/pom.xml b/pom.xml
index e28ca0d..c08d393 100644
--- a/pom.xml
+++ b/pom.xml
@@ -245,11 +245,7 @@
     <dbutils.spotbugs.version>4.1.4</dbutils.spotbugs.version>
     
<commons.checkstyle-plugin.version>3.1.1</commons.checkstyle-plugin.version>
     <dbutils.checkstyle.version>8.37</dbutils.checkstyle.version>
-
-    <!-- generate report even if there are binary incompatible changes -->
-    
<commons.japicmp.breakBuildOnBinaryIncompatibleModifications>false</commons.japicmp.breakBuildOnBinaryIncompatibleModifications>
     <commons.japicmp.version>0.15.1</commons.japicmp.version>
-
     <commons.componentid>dbutils</commons.componentid>
     <commons.module.name>org.apache.commons.dbutils</commons.module.name>
     <commons.release.version>1.8</commons.release.version>
@@ -262,7 +258,7 @@
   </properties>
 
   <build>
-    <defaultGoal>clean verify apache-rat:check clirr:check checkstyle:check 
spotbugs:check javadoc:javadoc</defaultGoal>
+    <defaultGoal>clean install apache-rat:check japicmp:cmp checkstyle:check 
spotbugs:check javadoc:javadoc</defaultGoal>
     <pluginManagement>
       <plugins>
         <plugin>

Reply via email to