You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streams.apache.org by sb...@apache.org on 2016/10/22 19:53:12 UTC

[1/3] incubator-streams-examples git commit: Updated to Java 8, add .java-version for jenv

Repository: incubator-streams-examples
Updated Branches:
  refs/heads/master 2d443be05 -> be27e3fad


Updated to Java 8, add .java-version for jenv


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/commit/68100605
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/tree/68100605
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/diff/68100605

Branch: refs/heads/master
Commit: 68100605652c62173e058c654b421e85e3ebae45
Parents: 2d443be
Author: Joey Frazee <jo...@icloud.com>
Authored: Fri Oct 21 13:22:31 2016 -0500
Committer: Joey Frazee <jo...@icloud.com>
Committed: Fri Oct 21 13:22:31 2016 -0500

----------------------------------------------------------------------
 .java-version                    |  1 +
 incubator-streams-master-pom.xml | 12 ++++++------
 2 files changed, 7 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/68100605/.java-version
----------------------------------------------------------------------
diff --git a/.java-version b/.java-version
new file mode 100644
index 0000000..6259340
--- /dev/null
+++ b/.java-version
@@ -0,0 +1 @@
+1.8

http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/68100605/incubator-streams-master-pom.xml
----------------------------------------------------------------------
diff --git a/incubator-streams-master-pom.xml b/incubator-streams-master-pom.xml
index ad0cf4a..470b49c 100644
--- a/incubator-streams-master-pom.xml
+++ b/incubator-streams-master-pom.xml
@@ -32,7 +32,7 @@
     <name>Apache Streams :: streams-master</name>
     <description>Apache Streams Master Pom</description>
     <packaging>pom</packaging>
-    <version>0.3-incubating-SNAPSHOT</version>
+    <version>0.4-incubating-SNAPSHOT</version>
 
     <inceptionYear>2012</inceptionYear>
 
@@ -128,11 +128,11 @@
     <properties>
 
         <!-- Build Properties -->
-        <java.version>1.7</java.version>
+        <java.version>1.8</java.version>
         <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-        <streams.version>0.3-incubating-SNAPSHOT</streams.version>
+        <streams.version>0.4-incubating-SNAPSHOT</streams.version>
 
         <!-- Release Properties -->
         <snapshot.repository.url>
@@ -148,7 +148,7 @@
         <clean.plugin.version>2.6</clean.plugin.version>
         <depgraph.plugin.version>1.0.2</depgraph.plugin.version>
         <docker.plugin.version>0.11.5-M1</docker.plugin.version>
-        <enforcer.plugin.version>1.3.1</enforcer.plugin.version>
+        <enforcer.plugin.version>1.4.1</enforcer.plugin.version>
         <failsafe.plugin.version>2.17</failsafe.plugin.version>
         <jar.plugin.version>2.6</jar.plugin.version>
         <javadoc.plugin.version>2.10.2</javadoc.plugin.version>
@@ -333,8 +333,8 @@
                             <configuration>
                                 <rules>
                                     <requireJavaVersion>
-                                        <message>Java 6 or higher is required to compile this module</message>
-                                        <version>${java.version}</version>
+                                        <message>Java 8 or higher is required to compile this module</message>
+                                        <version>[${java.version},)</version>
                                     </requireJavaVersion>
                                 </rules>
                             </configuration>


[2/3] incubator-streams-examples git commit: Added requireMaven

Posted by sb...@apache.org.
Added requireMaven


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/commit/cf1ac0d0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/tree/cf1ac0d0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/diff/cf1ac0d0

Branch: refs/heads/master
Commit: cf1ac0d0ba663a925477c3a9b33bcd0912174e43
Parents: 6810060
Author: Joey Frazee <jo...@icloud.com>
Authored: Fri Oct 21 13:55:58 2016 -0500
Committer: Joey Frazee <jo...@icloud.com>
Committed: Fri Oct 21 13:55:58 2016 -0500

----------------------------------------------------------------------
 incubator-streams-master-pom.xml | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/cf1ac0d0/incubator-streams-master-pom.xml
----------------------------------------------------------------------
diff --git a/incubator-streams-master-pom.xml b/incubator-streams-master-pom.xml
index 470b49c..3bf3ab8 100644
--- a/incubator-streams-master-pom.xml
+++ b/incubator-streams-master-pom.xml
@@ -129,6 +129,7 @@
 
         <!-- Build Properties -->
         <java.version>1.8</java.version>
+        <maven.version>3.0.5</maven.version>
         <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -336,6 +337,10 @@
                                         <message>Java 8 or higher is required to compile this module</message>
                                         <version>[${java.version},)</version>
                                     </requireJavaVersion>
+                                    <requireMavenVersion>
+                                        <message>Maven 3.0 or higher is required to compile this module</message>
+                                        <version>[${maven.version},)</version>
+                                    </requireMavenVersion>
                                 </rules>
                             </configuration>
                         </execution>


[3/3] incubator-streams-examples git commit: Bump maven to version 3.3.9

Posted by sb...@apache.org.
Bump maven to version 3.3.9


Project: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/commit/be27e3fa
Tree: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/tree/be27e3fa
Diff: http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/diff/be27e3fa

Branch: refs/heads/master
Commit: be27e3fad93563c1b8035469b88fd1921a0e3eb9
Parents: cf1ac0d
Author: Joey Frazee <jo...@icloud.com>
Authored: Fri Oct 21 14:01:30 2016 -0500
Committer: Joey Frazee <jo...@icloud.com>
Committed: Fri Oct 21 14:06:41 2016 -0500

----------------------------------------------------------------------
 incubator-streams-master-pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-streams-examples/blob/be27e3fa/incubator-streams-master-pom.xml
----------------------------------------------------------------------
diff --git a/incubator-streams-master-pom.xml b/incubator-streams-master-pom.xml
index 3bf3ab8..0d91ee4 100644
--- a/incubator-streams-master-pom.xml
+++ b/incubator-streams-master-pom.xml
@@ -64,7 +64,7 @@
     </ciManagement>
 
     <prerequisites>
-        <maven>3.0.5</maven>
+        <maven>3.3.9</maven>
     </prerequisites>
 
     <mailingLists>
@@ -129,7 +129,7 @@
 
         <!-- Build Properties -->
         <java.version>1.8</java.version>
-        <maven.version>3.0.5</maven.version>
+        <maven.version>3.3.9</maven.version>
         <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
@@ -338,7 +338,7 @@
                                         <version>[${java.version},)</version>
                                     </requireJavaVersion>
                                     <requireMavenVersion>
-                                        <message>Maven 3.0 or higher is required to compile this module</message>
+                                        <message>Maven 3.3.9 or higher is required to compile this module</message>
                                         <version>[${maven.version},)</version>
                                     </requireMavenVersion>
                                 </rules>