You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2010/09/27 15:41:07 UTC

svn commit: r1001734 - /camel/trunk/components/camel-jasypt/pom.xml

Author: ningjiang
Date: Mon Sep 27 13:41:07 2010
New Revision: 1001734

URL: http://svn.apache.org/viewvc?rev=1001734&view=rev
Log:
Added the icu4j dependecy with the JDK is 1.5

Modified:
    camel/trunk/components/camel-jasypt/pom.xml

Modified: camel/trunk/components/camel-jasypt/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-jasypt/pom.xml?rev=1001734&r1=1001733&r2=1001734&view=diff
==============================================================================
--- camel/trunk/components/camel-jasypt/pom.xml (original)
+++ camel/trunk/components/camel-jasypt/pom.xml Mon Sep 27 13:41:07 2010
@@ -88,6 +88,23 @@
         </dependency>
     </dependencies>
 
+    <profiles>
+      <profile>
+        <id>jdk1.5-maven-2.0.x</id>
+        <activation>
+          <!-- for maven 2.0.x syntax -->
+          <jdk>1.5</jdk>
+        </activation>
+        <dependencies>
+          <dependency>
+            <groupId>com.ibm.icu</groupId>
+            <artifactId>icu4j</artifactId>
+            <version>${icu4j-version}</version>
+          </dependency>
+        </dependencies>
+      </profile>
+    </profiles>
+
     <build>
         <plugins>