You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by ch...@apache.org on 2015/09/10 00:12:51 UTC

[20/50] incubator-apex-core git commit: enable semantic versioning

enable semantic versioning


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/352cc61d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/352cc61d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/352cc61d

Branch: refs/heads/master
Commit: 352cc61da198533aea3e89223310093a29b63e05
Parents: 66a75e0
Author: Chetan Narsude <ch...@datatorrent.com>
Authored: Fri Aug 7 12:50:59 2015 -0700
Committer: Chetan Narsude <ch...@datatorrent.com>
Committed: Fri Aug 7 14:35:22 2015 -0700

----------------------------------------------------------------------
 api/pom.xml    | 40 ++++++++++++++++++++++++++++++++++++++++
 common/pom.xml | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 86 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/352cc61d/api/pom.xml
----------------------------------------------------------------------
diff --git a/api/pom.xml b/api/pom.xml
index ff3f441..ebb2f8d 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -27,6 +27,46 @@
     </repository>
   </repositories>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>com.github.siom79.japicmp</groupId>
+        <artifactId>japicmp-maven-plugin</artifactId>
+        <version>0.5.1</version>
+        <configuration>
+          <oldVersion>
+            <dependency>
+              <groupId>com.datatorrent</groupId>
+              <artifactId>dt-api</artifactId>
+              <version>3.0.0</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>
+            <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications>
+            <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
+            <includeSynthetic>false</includeSynthetic>
+            <ignoreMissingClasses>false</ignoreMissingClasses>
+          </parameter>
+        </configuration>
+        <executions>
+          <execution>
+            <phase>verify</phase>
+            <goals>
+              <goal>cmp</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
   <dependencies>
     <dependency>
       <groupId>org.apache.hadoop</groupId>

http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/352cc61d/common/pom.xml
----------------------------------------------------------------------
diff --git a/common/pom.xml b/common/pom.xml
index 7079353..c3166bc 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -12,6 +12,47 @@
   <name>Base Library</name>
   <packaging>jar</packaging>
 
+  <build>
+  <plugins>
+      <plugin>
+        <groupId>com.github.siom79.japicmp</groupId>
+        <artifactId>japicmp-maven-plugin</artifactId>
+        <version>0.5.1</version>
+        <configuration>
+          <oldVersion>
+            <dependency>
+              <groupId>com.datatorrent</groupId>
+              <artifactId>dt-common</artifactId>
+              <version>3.0.0</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>
+            <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications>
+            <onlyBinaryIncompatible>false</onlyBinaryIncompatible>
+            <includeSynthetic>false</includeSynthetic>
+            <ignoreMissingClasses>false</ignoreMissingClasses>
+          </parameter>
+        </configuration>
+        <executions>
+          <execution>
+            <phase>verify</phase>
+            <goals>
+              <goal>cmp</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+  </plugins>
+  </build>
+
   <dependencies>
     <dependency>
       <groupId>${project.groupId}</groupId>
@@ -47,5 +88,10 @@
       <artifactId>validation-api</artifactId>
       <version>1.1.0.Final</version>
     </dependency>
+    <dependency>
+      <groupId>com.sun.jersey</groupId>
+      <artifactId>jersey-core</artifactId>
+      <version>${jersey.version}</version>
+    </dependency>
   </dependencies>
 </project>