Repository: incubator-apex-core Updated Branches: refs/heads/release-3.2 4806e5fab -> fd2a7e821
APEXCORE-327 Implement proper semantic versioning check for 3.2.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/fd2a7e82 Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/fd2a7e82 Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/fd2a7e82 Branch: refs/heads/release-3.2 Commit: fd2a7e821249aec518216b36f7684b4e6266a403 Parents: 4806e5f Author: Vlad Rozov <[email protected]> Authored: Wed Feb 3 09:55:28 2016 -0800 Committer: Vlad Rozov <[email protected]> Committed: Wed Feb 3 09:55:28 2016 -0800 ---------------------------------------------------------------------- api/pom.xml | 10 +++++----- common/pom.xml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/fd2a7e82/api/pom.xml ---------------------------------------------------------------------- diff --git a/api/pom.xml b/api/pom.xml index fb3e591..771e610 100644 --- a/api/pom.xml +++ b/api/pom.xml @@ -52,13 +52,13 @@ <plugin> <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> - <version>0.5.3</version> + <version>0.6.2</version> <configuration> <oldVersion> <dependency> - <groupId>com.datatorrent</groupId> - <artifactId>dt-api</artifactId> - <version>3.0.0</version> + <groupId>${project.groupId}</groupId> + <artifactId>${project.artifactId}</artifactId> + <version>3.2.0-incubating</version> </dependency> </oldVersion> <newVersion> @@ -69,7 +69,7 @@ <parameter> <onlyModified>true</onlyModified> <accessModifier>protected</accessModifier> - <breakBuildOnModifications>false</breakBuildOnModifications> + <breakBuildOnModifications>true</breakBuildOnModifications> <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications> <onlyBinaryIncompatible>false</onlyBinaryIncompatible> <includeSynthetic>false</includeSynthetic> http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/fd2a7e82/common/pom.xml ---------------------------------------------------------------------- diff --git a/common/pom.xml b/common/pom.xml index 00a9a06..0015fd1 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -37,13 +37,13 @@ <plugin> <groupId>com.github.siom79.japicmp</groupId> <artifactId>japicmp-maven-plugin</artifactId> - <version>0.5.3</version> + <version>0.6.2</version> <configuration> <oldVersion> <dependency> - <groupId>com.datatorrent</groupId> - <artifactId>dt-common</artifactId> - <version>3.0.0</version> + <groupId>${project.groupId}</groupId> + <artifactId>${project.artifactId}</artifactId> + <version>3.2.0-incubating</version> </dependency> </oldVersion> <newVersion> @@ -54,7 +54,7 @@ <parameter> <onlyModified>true</onlyModified> <accessModifier>protected</accessModifier> - <breakBuildOnModifications>false</breakBuildOnModifications> + <breakBuildOnModifications>true</breakBuildOnModifications> <breakBuildOnBinaryIncompatibleModifications>true</breakBuildOnBinaryIncompatibleModifications> <onlyBinaryIncompatible>false</onlyBinaryIncompatible> <includeSynthetic>false</includeSynthetic>
