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 2012/11/10 10:25:47 UTC

svn commit: r1407736 - /camel/trunk/components/camel-leveldb/pom.xml

Author: davsclaus
Date: Sat Nov 10 09:25:46 2012
New Revision: 1407736

URL: http://svn.apache.org/viewvc?rev=1407736&view=rev
Log:
camel-leveldb, skip tests on aix as not native supported.

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

Modified: camel/trunk/components/camel-leveldb/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-leveldb/pom.xml?rev=1407736&r1=1407735&r2=1407736&view=diff
==============================================================================
--- camel/trunk/components/camel-leveldb/pom.xml (original)
+++ camel/trunk/components/camel-leveldb/pom.xml Sat Nov 10 09:25:46 2012
@@ -86,6 +86,7 @@
         </plugins>
     </build>
 
+	  <!-- skip tests on Windows and AIX -->
     <profiles>
         <profile>
             <id>windows</id>
@@ -94,7 +95,17 @@
                     <family>Windows</family>
                 </os>
             </activation>
-
+            <properties>
+                <skipTests>true</skipTests>
+            </properties>
+        </profile>
+        <profile>
+            <id>aix</id>
+            <activation>
+                <os>
+                    <family>AIX</family>
+                </os>
+            </activation>
             <properties>
                 <skipTests>true</skipTests>
             </properties>