You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by th...@apache.org on 2016/02/17 01:54:37 UTC

incubator-apex-core git commit: APEXCORE-327 Implement proper semantic versioning check for 3.3.x patch releases.

Repository: incubator-apex-core
Updated Branches:
  refs/heads/release-3.3 458157276 -> c7d27d643


APEXCORE-327 Implement proper semantic versioning check for 3.3.x patch releases.


Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/commit/c7d27d64
Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/c7d27d64
Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/c7d27d64

Branch: refs/heads/release-3.3
Commit: c7d27d64330fc51a4d3e33a7dc06e4bf77857fa9
Parents: 4581572
Author: Vlad Rozov <v....@datatorrent.com>
Authored: Mon Feb 15 17:11:29 2016 -0800
Committer: Vlad Rozov <v....@datatorrent.com>
Committed: Mon Feb 15 17:11:29 2016 -0800

----------------------------------------------------------------------
 api/pom.xml    | 14 --------------
 common/pom.xml | 14 --------------
 pom.xml        | 14 +++++++++++++-
 3 files changed, 13 insertions(+), 29 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/c7d27d64/api/pom.xml
----------------------------------------------------------------------
diff --git a/api/pom.xml b/api/pom.xml
index 76ab121..cfc886f 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -52,20 +52,6 @@
       <plugin>
         <groupId>com.github.siom79.japicmp</groupId>
         <artifactId>japicmp-maven-plugin</artifactId>
-        <configuration>
-          <oldVersion>
-            <dependency>
-              <groupId>org.apache.apex</groupId>
-              <artifactId>apex-api</artifactId>
-              <version>3.2.0-incubating</version>
-            </dependency>
-          </oldVersion>
-          <newVersion>
-            <file>
-              <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
-            </file>
-          </newVersion>
-        </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/c7d27d64/common/pom.xml
----------------------------------------------------------------------
diff --git a/common/pom.xml b/common/pom.xml
index 1f28af3..a52a689 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -37,20 +37,6 @@
       <plugin>
         <groupId>com.github.siom79.japicmp</groupId>
         <artifactId>japicmp-maven-plugin</artifactId>
-        <configuration>
-          <oldVersion>
-            <dependency>
-              <groupId>org.apache.apex</groupId>
-              <artifactId>apex-common</artifactId>
-              <version>3.2.0-incubating</version>
-            </dependency>
-          </oldVersion>
-          <newVersion>
-            <file>
-              <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
-            </file>
-          </newVersion>
-        </configuration>
       </plugin>
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/c7d27d64/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 774f92e..9b727a4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -355,10 +355,22 @@
           <artifactId>japicmp-maven-plugin</artifactId>
           <version>0.6.2</version>
           <configuration>
+            <oldVersion>
+              <dependency>
+                <groupId>${project.groupId}</groupId>
+                <artifactId>${project.artifactId}</artifactId>
+                <version>3.3.0-incubating</version>
+              </dependency>
+            </oldVersion>
+            <newVersion>
+              <file>
+                <path>${project.build.directory}/${project.artifactId}-${project.version}.jar</path>
+              </file>
+            </newVersion>
             <parameter>
               <onlyModified>true</onlyModified>
               <accessModifier>protected</accessModifier>
-              <breakBuildOnModifications>false</breakBuildOnModifications>
+              <breakBuildOnModifications>true</breakBuildOnModifications>
               <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications>
               <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
               <includeSynthetic>false</includeSynthetic>