You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2009/07/17 08:01:42 UTC

svn commit: r794967 - /camel/trunk/components/camel-amqp/pom.xml

Author: davsclaus
Date: Fri Jul 17 06:01:42 2009
New Revision: 794967

URL: http://svn.apache.org/viewvc?rev=794967&view=rev
Log:
MR-218: Fixed unit tests to run on IBM JDK.

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

Modified: camel/trunk/components/camel-amqp/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-amqp/pom.xml?rev=794967&r1=794966&r2=794967&view=diff
==============================================================================
--- camel/trunk/components/camel-amqp/pom.xml (original)
+++ camel/trunk/components/camel-amqp/pom.xml Fri Jul 17 06:01:42 2009
@@ -127,4 +127,29 @@
     </plugins>
   </build>
 
+
+  <!--
+    It's necessary to explicitly include the mina-filter-ssl dependency
+    when using the ibm jdk as well.
+  -->
+  <profiles>
+    <profile>
+      <id>ibmjdk</id>
+      <activation>
+        <property>
+          <name>java.vendor</name>
+          <value>IBM Corporation</value>
+        </property>
+      </activation> 
+      <dependencies>
+        <dependency>
+          <groupId>org.apache.mina</groupId>
+          <artifactId>mina-filter-ssl</artifactId>
+          <version>1.0.1</version>
+          <scope>test</scope>
+        </dependency>
+      </dependencies>
+    </profile>
+  </profiles>
+
 </project>
\ No newline at end of file