You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by dk...@apache.org on 2014/09/19 16:19:26 UTC

[1/3] git commit: Update to Java7

Repository: camel
Updated Branches:
  refs/heads/master 828c2b971 -> c439d0334


Update to Java7


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/270fa4b4
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/270fa4b4
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/270fa4b4

Branch: refs/heads/master
Commit: 270fa4b4a73cd13420810bec588d156ef1d1d224
Parents: 828c2b9
Author: Daniel Kulp <dk...@apache.org>
Authored: Fri Sep 19 10:02:18 2014 -0400
Committer: Daniel Kulp <dk...@apache.org>
Committed: Fri Sep 19 10:07:48 2014 -0400

----------------------------------------------------------------------
 camel-core/pom.xml |  3 ---
 parent/pom.xml     | 14 +++++++-------
 pom.xml            |  4 ++--
 3 files changed, 9 insertions(+), 12 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/270fa4b4/camel-core/pom.xml
----------------------------------------------------------------------
diff --git a/camel-core/pom.xml b/camel-core/pom.xml
index 37ddf62..da6f3f5 100644
--- a/camel-core/pom.xml
+++ b/camel-core/pom.xml
@@ -296,7 +296,6 @@
           <stylesheetfile>${basedir}/../etc/css/stylesheet.css</stylesheetfile>
           <linksource>true</linksource>
           <maxmemory>256m</maxmemory>
-          <source>1.6</source>
 
           <groups>
             <group>
@@ -379,8 +378,6 @@
               <stylesheetfile>${basedir}/../etc/css/stylesheet.css</stylesheetfile>
               <linksource>true</linksource>
               <maxmemory>256m</maxmemory>
-              <source>1.6</source>
-
               <groups>
                 <group>
                   <title>Camel API</title>

http://git-wip-us.apache.org/repos/asf/camel/blob/270fa4b4/parent/pom.xml
----------------------------------------------------------------------
diff --git a/parent/pom.xml b/parent/pom.xml
index c190671..fdf5ef0 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -2475,10 +2475,10 @@
           <artifactId>maven-compiler-plugin</artifactId>
           <version>${maven-compiler-plugin-version}</version>
           <configuration>
-            <source>1.6</source>
-            <target>1.6</target>
-            <maxmem>256M</maxmem>
-            <fork>${compiler.fork}</fork>
+              <source>${jdk.version}</source>
+              <target>${jdk.version}</target>
+              <maxmem>256M</maxmem>
+              <fork>${compiler.fork}</fork>
           </configuration>
         </plugin>
         <plugin>
@@ -2510,11 +2510,11 @@
           <artifactId>maven-javadoc-plugin</artifactId>
           <configuration>
             <attach>true</attach>
-            <source>1.6</source>
+            <source>${jdk.version}</source>
             <quiet>true</quiet>
             <bottom>Apache Camel</bottom>
             <detectOfflineLinks>false</detectOfflineLinks>
-            <javadocVersion>1.6</javadocVersion>
+            <javadocVersion>${jdk.version}</javadocVersion>
             <encoding>UTF-8</encoding>
           </configuration>
         </plugin>
@@ -2854,7 +2854,7 @@
           <stylesheetfile>${basedir}/../../etc/css/stylesheet.css</stylesheetfile>
           <linksource>true</linksource>
           <maxmemory>500m</maxmemory>
-          <source>1.6</source>
+          <source>${jdk.version}</source>
         </configuration>
       </plugin>
       <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/270fa4b4/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 2ad1afe..826c988 100755
--- a/pom.xml
+++ b/pom.xml
@@ -43,8 +43,8 @@
     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
 
     <site-repo-url>scpexe://people.apache.org/www/camel.apache.org/maven/</site-repo-url>
-    <jdk.version>1.6</jdk.version>
-    <compiler.fork>1.6</compiler.fork>
+    <jdk.version>1.7</jdk.version>
+    <compiler.fork>false</compiler.fork>
 
     <!-- use maven compiler 2.5.1 as 3.0/3.1 recompiles everything even if nothingh has changed, or only 1 file,
          so 2.5.1 is much faster to use for development -->


[2/3] git commit: Update poms to use jdk.version instead of a hardcoded value

Posted by dk...@apache.org.
Update poms to use jdk.version instead of a hardcoded value


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/de90fa14
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/de90fa14
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/de90fa14

Branch: refs/heads/master
Commit: de90fa14d9fc28ecda496259225f43094e01ae30
Parents: 270fa4b
Author: Daniel Kulp <dk...@apache.org>
Authored: Fri Sep 19 10:14:48 2014 -0400
Committer: Daniel Kulp <dk...@apache.org>
Committed: Fri Sep 19 10:14:48 2014 -0400

----------------------------------------------------------------------
 components/camel-blueprint/pom.xml                   | 4 ++--
 components/camel-linkedin/camel-linkedin-api/pom.xml | 4 ++--
 components/camel-olingo2/camel-olingo2-api/pom.xml   | 4 ++--
 components/camel-spring/pom.xml                      | 4 ++--
 tooling/apt/pom.xml                                  | 4 ++--
 tooling/maven/pom.xml                                | 2 +-
 6 files changed, 11 insertions(+), 11 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/de90fa14/components/camel-blueprint/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-blueprint/pom.xml b/components/camel-blueprint/pom.xml
index 2054eb9..0eea213 100644
--- a/components/camel-blueprint/pom.xml
+++ b/components/camel-blueprint/pom.xml
@@ -241,7 +241,7 @@
                             </links>
                             <stylesheetfile>${basedir}/../../etc/css/stylesheet.css</stylesheetfile>
                             <linksource>true</linksource>
-                            <source>1.6</source>
+                            <source>${jdk.version}</source>
                         </configuration>
                     </plugin>
                 </plugins>
@@ -387,7 +387,7 @@
                     <stylesheetfile>${basedir}/../../etc/css/stylesheet.css</stylesheetfile>
                     <linksource>true</linksource>
                     <maxmemory>256m</maxmemory>
-                    <source>1.6</source>
+                    <source>${jdk.version}</source>
 
                     <groups>
                         <group>

http://git-wip-us.apache.org/repos/asf/camel/blob/de90fa14/components/camel-linkedin/camel-linkedin-api/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-linkedin/camel-linkedin-api/pom.xml b/components/camel-linkedin/camel-linkedin-api/pom.xml
index 54ee3c1..a57d56c 100644
--- a/components/camel-linkedin/camel-linkedin-api/pom.xml
+++ b/components/camel-linkedin/camel-linkedin-api/pom.xml
@@ -192,10 +192,10 @@
             </goals>
             <configuration>
               <attach>true</attach>
-              <source>1.6</source>
+              <source>${jdk.version}</source>
               <quiet>true</quiet>
               <detectOfflineLinks>false</detectOfflineLinks>
-              <javadocVersion>1.6</javadocVersion>
+              <javadocVersion>${jdk.version}</javadocVersion>
               <encoding>UTF-8</encoding>
             </configuration>
           </execution>

http://git-wip-us.apache.org/repos/asf/camel/blob/de90fa14/components/camel-olingo2/camel-olingo2-api/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-olingo2/camel-olingo2-api/pom.xml b/components/camel-olingo2/camel-olingo2-api/pom.xml
index c24b09c..f702cb4 100644
--- a/components/camel-olingo2/camel-olingo2-api/pom.xml
+++ b/components/camel-olingo2/camel-olingo2-api/pom.xml
@@ -99,10 +99,10 @@
             </goals>
             <configuration>
               <attach>true</attach>
-              <source>1.6</source>
+              <source>${jdk.version}</source>
               <quiet>true</quiet>
               <detectOfflineLinks>false</detectOfflineLinks>
-              <javadocVersion>1.6</javadocVersion>
+              <javadocVersion>${jdk.version}</javadocVersion>
               <encoding>UTF-8</encoding>
             </configuration>
           </execution>

http://git-wip-us.apache.org/repos/asf/camel/blob/de90fa14/components/camel-spring/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-spring/pom.xml b/components/camel-spring/pom.xml
index b95183e..d793ff8 100644
--- a/components/camel-spring/pom.xml
+++ b/components/camel-spring/pom.xml
@@ -448,7 +448,7 @@
               </links>
               <stylesheetfile>${basedir}/../../etc/css/stylesheet.css</stylesheetfile>
               <linksource>true</linksource>
-              <source>1.6</source>
+              <source>${jdk.version}</source>
             </configuration>
           </plugin>
         </plugins>
@@ -499,7 +499,7 @@
           <stylesheetfile>${basedir}/../../etc/css/stylesheet.css</stylesheetfile>
           <linksource>true</linksource>
           <maxmemory>256m</maxmemory>
-          <source>1.6</source>
+          <source>${jdk.version}</source>
 
           <groups>
             <group>

http://git-wip-us.apache.org/repos/asf/camel/blob/de90fa14/tooling/apt/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/apt/pom.xml b/tooling/apt/pom.xml
index 8bcc977..ea6e775 100644
--- a/tooling/apt/pom.xml
+++ b/tooling/apt/pom.xml
@@ -65,8 +65,8 @@
         <plugin>
           <artifactId>maven-compiler-plugin</artifactId>
           <configuration>
-            <source>1.6</source>
-            <target>1.6</target>
+            <source>${jdk.version}</source>
+            <target>${jdk.version}</target>
             <!-- Disable annotation processing for ourselves. -->
               <proc>none</proc>
               <verbose>false</verbose>

http://git-wip-us.apache.org/repos/asf/camel/blob/de90fa14/tooling/maven/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/maven/pom.xml b/tooling/maven/pom.xml
index 15d3805..7a14512 100644
--- a/tooling/maven/pom.xml
+++ b/tooling/maven/pom.xml
@@ -67,7 +67,7 @@
           <stylesheetfile>${basedir}/../../../etc/css/stylesheet.css</stylesheetfile>
           <linksource>true</linksource>
           <maxmemory>900m</maxmemory>
-          <source>1.6</source>
+          <source>${jdk.version}</source>
         </configuration>
       </plugin>
     </plugins>


[3/3] git commit: Update teh archetype compiler settings

Posted by dk...@apache.org.
Update teh archetype compiler settings


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/c439d033
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/c439d033
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/c439d033

Branch: refs/heads/master
Commit: c439d0334578ae3b1aef9448d464f877335c9a9e
Parents: de90fa1
Author: Daniel Kulp <dk...@apache.org>
Authored: Fri Sep 19 10:18:56 2014 -0400
Committer: Daniel Kulp <dk...@apache.org>
Committed: Fri Sep 19 10:18:56 2014 -0400

----------------------------------------------------------------------
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../resources/archetype-resources/__artifactId__-api/pom.xml     | 4 ++--
 .../archetype-resources/__artifactId__-component/pom.xml         | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 .../src/main/resources/archetype-resources/pom.xml               | 4 ++--
 17 files changed, 34 insertions(+), 34 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-activemq/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-activemq/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-activemq/src/main/resources/archetype-resources/pom.xml
index 479f2d6..989137f 100644
--- a/tooling/archetypes/camel-archetype-activemq/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-activemq/src/main/resources/archetype-resources/pom.xml
@@ -128,8 +128,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/__artifactId__-api/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/__artifactId__-api/pom.xml b/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/__artifactId__-api/pom.xml
index 1aa342f..25491a3 100644
--- a/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/__artifactId__-api/pom.xml
+++ b/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/__artifactId__-api/pom.xml
@@ -52,10 +52,10 @@
             </goals>
             <configuration>
               <attach>true</attach>
-              <source>1.6</source>
+              <source>1.7</source>
               <quiet>true</quiet>
               <detectOfflineLinks>false</detectOfflineLinks>
-              <javadocVersion>1.6</javadocVersion>
+              <javadocVersion>1.7</javadocVersion>
               <encoding>UTF-8</encoding>
             </configuration>
           </execution>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/__artifactId__-component/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/__artifactId__-component/pom.xml b/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/__artifactId__-component/pom.xml
index 10f709c..a0c7265 100644
--- a/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/__artifactId__-component/pom.xml
+++ b/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/__artifactId__-component/pom.xml
@@ -106,8 +106,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/pom.xml
index 6876c18..739bb37 100644
--- a/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-api-component/src/main/resources/archetype-resources/pom.xml
@@ -40,8 +40,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
     </plugins>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/pom.xml
index fc527c7..44f86aa 100644
--- a/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-blueprint/src/main/resources/archetype-resources/pom.xml
@@ -84,8 +84,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-component-scala/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-component-scala/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-component-scala/src/main/resources/archetype-resources/pom.xml
index 2cbcb11..1a40458 100644
--- a/tooling/archetypes/camel-archetype-component-scala/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-component-scala/src/main/resources/archetype-resources/pom.xml
@@ -93,8 +93,8 @@
                 <artifactId>maven-compiler-plugin</artifactId>
                 <version>${maven-compiler-plugin-version}</version>
                 <configuration>
-                    <source>1.6</source>
-                    <target>1.6</target>
+                    <source>1.7</source>
+                    <target>1.7</target>
                 </configuration>
             </plugin>
             <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-component/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-component/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-component/src/main/resources/archetype-resources/pom.xml
index 8df926c..60182d2 100644
--- a/tooling/archetypes/camel-archetype-component/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-component/src/main/resources/archetype-resources/pom.xml
@@ -77,8 +77,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-cxf-code-first-blueprint/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-cxf-code-first-blueprint/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-cxf-code-first-blueprint/src/main/resources/archetype-resources/pom.xml
index 21e4eb9..abed905 100644
--- a/tooling/archetypes/camel-archetype-cxf-code-first-blueprint/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-cxf-code-first-blueprint/src/main/resources/archetype-resources/pom.xml
@@ -60,8 +60,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-cxf-contract-first-blueprint/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-cxf-contract-first-blueprint/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-cxf-contract-first-blueprint/src/main/resources/archetype-resources/pom.xml
index 1a39cef..dfb9996 100644
--- a/tooling/archetypes/camel-archetype-cxf-contract-first-blueprint/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-cxf-contract-first-blueprint/src/main/resources/archetype-resources/pom.xml
@@ -88,8 +88,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-dataformat/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-dataformat/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-dataformat/src/main/resources/archetype-resources/pom.xml
index 922dd71..505f695 100644
--- a/tooling/archetypes/camel-archetype-dataformat/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-dataformat/src/main/resources/archetype-resources/pom.xml
@@ -77,8 +77,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
 

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-groovy/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-groovy/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-groovy/src/main/resources/archetype-resources/pom.xml
index ee8233f..96aa803 100644
--- a/tooling/archetypes/camel-archetype-groovy/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-groovy/src/main/resources/archetype-resources/pom.xml
@@ -94,8 +94,8 @@
 				<artifactId>maven-compiler-plugin</artifactId>
 				<version>${maven-compiler-plugin-version}</version>
 				<configuration>
-					<source>1.6</source>
-					<target>1.6</target>				  
+					<source>1.7</source>
+					<target>1.7</target>				  
 					<compilerId>groovy-eclipse-compiler</compilerId>
 				    <!-- set verbose to be true if you want lots of uninteresting messages -->
 				    <!-- <verbose>true</verbose> -->

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-java/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-java/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-java/src/main/resources/archetype-resources/pom.xml
index 2304077..4651de8 100644
--- a/tooling/archetypes/camel-archetype-java/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-java/src/main/resources/archetype-resources/pom.xml
@@ -73,8 +73,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml
index b24d3a7..efed7cd 100644
--- a/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml
@@ -90,8 +90,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-spring-dm/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-spring-dm/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-spring-dm/src/main/resources/archetype-resources/pom.xml
index 9340f8d..eac4c64 100644
--- a/tooling/archetypes/camel-archetype-spring-dm/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-spring-dm/src/main/resources/archetype-resources/pom.xml
@@ -79,8 +79,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-spring/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-spring/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-spring/src/main/resources/archetype-resources/pom.xml
index 6910e5e..d35d3d9 100644
--- a/tooling/archetypes/camel-archetype-spring/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-spring/src/main/resources/archetype-resources/pom.xml
@@ -80,8 +80,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-web/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-web/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-web/src/main/resources/archetype-resources/pom.xml
index a109eeb..8eab99e 100644
--- a/tooling/archetypes/camel-archetype-web/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-web/src/main/resources/archetype-resources/pom.xml
@@ -95,8 +95,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       <plugin>

http://git-wip-us.apache.org/repos/asf/camel/blob/c439d033/tooling/archetypes/camel-archetype-webconsole/src/main/resources/archetype-resources/pom.xml
----------------------------------------------------------------------
diff --git a/tooling/archetypes/camel-archetype-webconsole/src/main/resources/archetype-resources/pom.xml b/tooling/archetypes/camel-archetype-webconsole/src/main/resources/archetype-resources/pom.xml
index 2b01b6f..1ee3014 100644
--- a/tooling/archetypes/camel-archetype-webconsole/src/main/resources/archetype-resources/pom.xml
+++ b/tooling/archetypes/camel-archetype-webconsole/src/main/resources/archetype-resources/pom.xml
@@ -108,8 +108,8 @@
         <artifactId>maven-compiler-plugin</artifactId>
         <version>${maven-compiler-plugin-version}</version>
         <configuration>
-          <source>1.6</source>
-          <target>1.6</target>
+          <source>1.7</source>
+          <target>1.7</target>
         </configuration>
       </plugin>
       <plugin>