Author: bvahdat Date: Mon Apr 29 11:10:24 2013 New Revision: 1476966 URL: http://svn.apache.org/r1476966 Log: Restrict the new HTML documentation feature for only JDK 1.7+ as on JDK 1.6 it causes build problems on our CI-Server.
Modified: camel/trunk/camel-core/pom.xml camel/trunk/components/pom.xml Modified: camel/trunk/camel-core/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/pom.xml?rev=1476966&r1=1476965&r2=1476966&view=diff ============================================================================== --- camel/trunk/camel-core/pom.xml (original) +++ camel/trunk/camel-core/pom.xml Mon Apr 29 11:10:24 2013 @@ -393,7 +393,8 @@ <profile> <id>apt</id> <activation> - <activeByDefault>true</activeByDefault> + <!-- don't enable on jdk 1.6 as that causes build problem on CI-Server --> + <jdk>[1.7,)</jdk> </activation> <dependencies> Modified: camel/trunk/components/pom.xml URL: http://svn.apache.org/viewvc/camel/trunk/components/pom.xml?rev=1476966&r1=1476965&r2=1476966&view=diff ============================================================================== --- camel/trunk/components/pom.xml (original) +++ camel/trunk/components/pom.xml Mon Apr 29 11:10:24 2013 @@ -211,7 +211,8 @@ <profile> <id>apt</id> <activation> - <activeByDefault>true</activeByDefault> + <!-- don't enable on jdk 1.6 as that causes build problem on CI-Server --> + <jdk>[1.7,)</jdk> </activation> <dependencies>