You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by cm...@apache.org on 2012/03/25 22:40:40 UTC

svn commit: r1305121 - /camel/trunk/parent/pom.xml

Author: cmueller
Date: Sun Mar 25 20:40:40 2012
New Revision: 1305121

URL: http://svn.apache.org/viewvc?rev=1305121&view=rev
Log:
CAMEL-4955: Camel should run in a Java 7 environment

Modified:
    camel/trunk/parent/pom.xml

Modified: camel/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/parent/pom.xml?rev=1305121&r1=1305120&r2=1305121&view=diff
==============================================================================
--- camel/trunk/parent/pom.xml (original)
+++ camel/trunk/parent/pom.xml Sun Mar 25 20:40:40 2012
@@ -1807,5 +1807,27 @@
             <spring-version>3.1.1.RELEASE</spring-version>
         </properties>
     </profile>
+    <profile>
+    	<id>jdk1.7</id>
+    	<activation>
+    		<jdk>1.7</jdk>
+    	</activation>
+    	
+	    <properties>
+	    	<jaxb-api-version>2.2</jaxb-api-version>
+	    	<jaxb-version>2.2.5</jaxb-version>
+	    </properties>
+    	
+    	<dependencies>
+	        <dependency>
+	          <groupId>javax.xml.bind</groupId>
+	          <artifactId>jaxb-api</artifactId>
+	        </dependency>
+	        <dependency>
+	          <groupId>com.sun.xml.bind</groupId>
+	          <artifactId>jaxb-impl</artifactId>
+	        </dependency>
+    	</dependencies>
+    </profile>
   </profiles>
 </project>