You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by bo...@apache.org on 2015/09/21 18:33:48 UTC

[1/4] incubator-apex-core git commit: Add NOTICE and DISCLAIMER.

Repository: incubator-apex-core
Updated Branches:
  refs/heads/rebase-test [created] 4a2cf2e20


Add NOTICE and DISCLAIMER.


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

Branch: refs/heads/rebase-test
Commit: 6273f9a43b533a10c57ec324970788db9206849f
Parents: c54f832
Author: Thomas Weise <th...@datatorrent.com>
Authored: Thu Sep 17 21:49:43 2015 -0700
Committer: Thomas Weise <th...@datatorrent.com>
Committed: Thu Sep 17 21:49:43 2015 -0700

----------------------------------------------------------------------
 DISCLAIMER | 11 +++++++++++
 NOTICE     |  6 ++++++
 2 files changed, 17 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/6273f9a4/DISCLAIMER
----------------------------------------------------------------------
diff --git a/DISCLAIMER b/DISCLAIMER
new file mode 100644
index 0000000..e0b6752
--- /dev/null
+++ b/DISCLAIMER
@@ -0,0 +1,11 @@
+Apache Apex is an effort undergoing incubation at the Apache Software
+Foundation (ASF), sponsored by the Apache Incubator PMC.
+
+Incubation is required of all newly accepted projects until a further review
+indicates that the infrastructure, communications, and decision making process
+have stabilized in a manner consistent with other successful ASF projects.
+
+While incubation status is not necessarily a reflection of the completeness
+or stability of the code, it does indicate that the project has yet to be
+fully endorsed by the ASF.
+

http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/6273f9a4/NOTICE
----------------------------------------------------------------------
diff --git a/NOTICE b/NOTICE
new file mode 100644
index 0000000..d834235
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1,6 @@
+Apache Apex
+Copyright (c) 2015 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+


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

Posted by bo...@apache.org.
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/4a2cf2e2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/4a2cf2e2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/4a2cf2e2

Branch: refs/heads/rebase-test
Commit: 4a2cf2e20a3ae8007e266a430e6e365c9aadefc0
Parents: 3a164a2
Author: Vlad Rozov <v....@datatorrent.com>
Authored: Tue Sep 15 09:22:22 2015 -0700
Committer: Thomas Weise <th...@datatorrent.com>
Committed: Fri Sep 18 20:34:16 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/4a2cf2e2/api/pom.xml
----------------------------------------------------------------------
diff --git a/api/pom.xml b/api/pom.xml
index e7555a7..22a8195 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/4a2cf2e2/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 701c101..96c9ac8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -113,7 +113,7 @@
       </plugin>
       <plugin>
         <artifactId>maven-enforcer-plugin</artifactId>
-        <version>1.0.1</version>
+        <version>1.4.1</version>
         <executions>
           <execution>
             <id>enforce-tools</id>
@@ -128,6 +128,10 @@
                 <requireMavenVersion>
                   <version>[3.0.2,)</version>
                 </requireMavenVersion>
+                <requireReleaseDeps>
+                  <message>Snapshots are not allowed</message>
+                  <onlyWhenRelease>true</onlyWhenRelease>
+                </requireReleaseDeps>
               </rules>
             </configuration>
           </execution>


[3/4] incubator-apex-core git commit: Fix japicmp compare version.

Posted by bo...@apache.org.
Fix japicmp compare version.


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

Branch: refs/heads/rebase-test
Commit: 3a164a28e1c17b0b68e11896c01c1c989e775c02
Parents: d0df8a7
Author: Thomas Weise <th...@datatorrent.com>
Authored: Fri Sep 18 20:34:09 2015 -0700
Committer: Thomas Weise <th...@datatorrent.com>
Committed: Fri Sep 18 20:34:09 2015 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/3a164a28/api/pom.xml
----------------------------------------------------------------------
diff --git a/api/pom.xml b/api/pom.xml
index cf94b03..e7555a7 100644
--- a/api/pom.xml
+++ b/api/pom.xml
@@ -38,7 +38,7 @@
             <dependency>
               <groupId>com.datatorrent</groupId>
               <artifactId>dt-api</artifactId>
-              <version>3.1.0</version>
+              <version>3.0.0</version>
             </dependency>
           </oldVersion>
           <newVersion>

http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/3a164a28/common/pom.xml
----------------------------------------------------------------------
diff --git a/common/pom.xml b/common/pom.xml
index d17c7c9..f6adb8e 100644
--- a/common/pom.xml
+++ b/common/pom.xml
@@ -23,7 +23,7 @@
             <dependency>
               <groupId>com.datatorrent</groupId>
               <artifactId>dt-common</artifactId>
-              <version>3.1.0</version>
+              <version>3.0.0</version>
             </dependency>
           </oldVersion>
           <newVersion>


[2/4] incubator-apex-core git commit: APEX-131 #resolve Added .travis.yml file to trigger the build as well to test integrated slack notifications.

Posted by bo...@apache.org.
APEX-131 #resolve Added .travis.yml file to trigger the build as well to test integrated slack notifications.


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

Branch: refs/heads/rebase-test
Commit: d0df8a7e7a15cbf85b250bfad16285d9ddf962d7
Parents: 6273f9a
Author: Brennon York <bo...@apache.org>
Authored: Fri Sep 18 13:58:18 2015 -0700
Committer: Brennon York <bo...@apache.org>
Committed: Fri Sep 18 18:22:56 2015 -0700

----------------------------------------------------------------------
 .travis.yml | 20 ++++++++++++++++++++
 pom.xml     | 11 +++++++++++
 2 files changed, 31 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/d0df8a7e/.travis.yml
----------------------------------------------------------------------
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..9b18190
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+language: java
+
+notifications:
+  slack:
+    secure: GlWD2EjgNC6Lg2DtAfZuKhg2RTHE0FMeyfHH24D7TKmV49gRVTzTTqvExwOdLLYDDIu966eOF5w90/PfiD11A4rpm6+WyjRHDkpOhTyjBKWc2btMqNwiP1hRf2uKEG6A+RgszaQJ4HkGiMxIpDJ3o/jaTpBseOeA399t8Z7Pkd6obXVAEMcnm2XtfUPzIBqGblVkiecS3OzbkzjKWaOG6+nlp+ajVO7MazsOR05JNZ1MXnDOK/Qq/7xLBtweF4r/O8okyg52fST4pGqk4JTTI++bVFoRySpjNWSSJbdrfkWG/7h0sfqMcwMj8TpZqojcCuTvZih+IyPZwX3MP6Ls4bF6OFcD3BvWg049WbstA6ZdKnVW9fOiJoJ+Bx9gNI0tKtYeDt/8nMBfSRVMmzRVEGdTOEEpFs7n79OVVytwbp8qYFU+waqlG1/tMQvCclSaxuY8d236Ybg410KLiMQ0YhQ8ZaTVagHu2l0KrfV16Xq3/CRsolHa8k7PxDzmCxdi07Ao/mrorQLmJWoc7FkxEw6ZrEGHP17HTn5uidoTkANgGak4AVgrJm6zLKdAERxvr1KMnfyuJLT1ZK1x73SV+3EpdzcMLxvq2dMaBpZcfARiYB04EwSHVBdm/D0AIZtRL2s1rG85y1OtCkDMd04ZEvbwdKYZ+fD+HjTn7Zo7AKM=

http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/d0df8a7e/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c5b19bb..701c101 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,6 +22,17 @@
     </license>
   </licenses>
 
+  <repositories>
+    <repository>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+      <id>Datatorrent-Releases</id>
+      <name>DataTorrent Release Repository</name>
+      <url>https://www.datatorrent.com/maven/content/repositories/releases/</url>
+    </repository>
+  </repositories>
+
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
     <netbeans.hint.license>datatorrent-inc</netbeans.hint.license>