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/15 22:18:52 UTC

incubator-apex-core git commit: SPOI-6304 #resolve Fix netlet snapshot dependency. Enforce no dependencies on snapshot versions in release builds.

Repository: incubator-apex-core
Updated Branches:
  refs/heads/release-3.1 3a1615f76 -> 46a84d011


SPOI-6304 #resolve Fix netlet snapshot dependency. Enforce no dependencies on snapshot versions in release builds.


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

Branch: refs/heads/release-3.1
Commit: 46a84d01137b97ba4d7e25013aa0f36e3248f61e
Parents: 3a1615f
Author: Vlad Rozov <v....@datatorrent.com>
Authored: Tue Sep 15 09:22:22 2015 -0700
Committer: Chetan Narsude <ch...@datatorrent.com>
Committed: Tue Sep 15 13:17:31 2015 -0700

----------------------------------------------------------------------
 api/pom.xml | 2 +-
 pom.xml     | 6 +++++-
 2 files changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/46a84d01/api/pom.xml
----------------------------------------------------------------------
diff --git a/api/pom.xml b/api/pom.xml
index d1cfca5..c0c55f6 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -114,7 +114,7 @@
     <dependency>
       <groupId>${project.groupId}</groupId>
       <artifactId>netlet</artifactId>
-      <version>1.2.0-SNAPSHOT</version>
+      <version>1.2.0</version>
     </dependency>
   </dependencies>
 </project>

http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/46a84d01/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1fa5937..218e651 100644
--- a/pom.xml
+++ b/pom.xml
@@ -102,7 +102,7 @@
       </plugin>
       <plugin>
         <artifactId>maven-enforcer-plugin</artifactId>
-        <version>1.0.1</version>
+        <version>1.4.1</version>
         <executions>
           <execution>
             <id>enforce-tools</id>
@@ -117,6 +117,10 @@
                 <requireMavenVersion>
                   <version>[3.0.2,)</version>
                 </requireMavenVersion>
+                <requireReleaseDeps>
+                  <message>Snapshots are not allowed</message>
+                  <onlyWhenRelease>true</onlyWhenRelease>
+                </requireReleaseDeps>
               </rules>
             </configuration>
           </execution>