Author: davsclaus Date: Sat Nov 10 10:31:18 2012 New Revision: 1407746 URL: http://svn.apache.org/viewvc?rev=1407746&view=rev Log: Skip test on AIX
Modified: camel/branches/camel-2.10.x/ (props changed) camel/branches/camel-2.10.x/components/camel-printer/pom.xml Propchange: camel/branches/camel-2.10.x/ ------------------------------------------------------------------------------ Merged /camel/trunk:r1407744 Propchange: camel/branches/camel-2.10.x/ ------------------------------------------------------------------------------ Binary property 'svnmerge-integrated' - no diff available. Modified: camel/branches/camel-2.10.x/components/camel-printer/pom.xml URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/components/camel-printer/pom.xml?rev=1407746&r1=1407745&r2=1407746&view=diff ============================================================================== --- camel/branches/camel-2.10.x/components/camel-printer/pom.xml (original) +++ camel/branches/camel-2.10.x/components/camel-printer/pom.xml Sat Nov 10 10:31:18 2012 @@ -69,7 +69,6 @@ <build> <plugins> - <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> @@ -83,5 +82,20 @@ </plugin> </plugins> </build> - + + <!-- skip tests on AIX --> + <profiles> + <profile> + <id>aix</id> + <activation> + <os> + <family>AIX</family> + </os> + </activation> + <properties> + <skipTests>true</skipTests> + </properties> + </profile> + </profiles> + </project>