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 2012/05/08 03:11:39 UTC

svn commit: r1335321 - /camel/trunk/components/pom.xml

Author: dkulp
Date: Tue May  8 01:11:38 2012
New Revision: 1335321

URL: http://svn.apache.org/viewvc?rev=1335321&view=rev
Log:
Move camel-quickfix into a java6 only profile until we can get a version
of quickfix that is compatible with java7

Modified:
    camel/trunk/components/pom.xml

Modified: camel/trunk/components/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/pom.xml?rev=1335321&r1=1335320&r2=1335321&view=diff
==============================================================================
--- camel/trunk/components/pom.xml (original)
+++ camel/trunk/components/pom.xml Tue May  8 01:11:38 2012
@@ -123,7 +123,6 @@
     <module>camel-printer</module>
     <module>camel-protobuf</module>
     <module>camel-quartz</module>
-    <module>camel-quickfix</module>
     <module>camel-restlet</module>
     <module>camel-rmi</module>
     <module>camel-routebox</module>
@@ -159,5 +158,17 @@
     <module>camel-xstream</module>
     <module>camel-zookeeper</module>
   </modules>
+
+  <profiles>
+        <profile>
+            <id>jdk16</id>
+            <activation>
+                <jdk>1.6</jdk>
+            </activation>
+            <modules>
+                <module>camel-quickfix</module>
+            </modules>
+        </profile>
+  </profiles>
   
 </project>