Author: jstrachan
Date: Wed Apr 25 04:52:03 2007
New Revision: 532328
URL: http://svn.apache.org/viewvc?view=rev&rev=532328
Log:
configured the compiler plugin a bit tighter & disabled javadoc aggregation (as
it fails with the CSS issue)
Modified:
activemq/camel/trunk/pom.xml
Modified: activemq/camel/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/activemq/camel/trunk/pom.xml?view=diff&rev=532328&r1=532327&r2=532328
==============================================================================
--- activemq/camel/trunk/pom.xml (original)
+++ activemq/camel/trunk/pom.xml Wed Apr 25 04:52:03 2007
@@ -35,6 +35,7 @@
<properties>
<camel-version>1.0-SNAPSHOT</camel-version>
+ <compiler.fork>false</compiler.fork>
</properties>
<url>http://apache.apache.org/camel/</url>
@@ -427,9 +428,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
+ <maxmem>256M</maxmem>
+ <fork>${compiler.fork}</fork>
</configuration>
</plugin>
@@ -524,7 +528,9 @@
<linksource>true</linksource>
<maxmemory>900m</maxmemory>
<source>1.5</source>
- <aggregate>true</aggregate>
+
+ <!-- TODO we can't aggregate as it won't find the CSS file :( -->
+ <!--<aggregate>true</aggregate>-->
</configuration>
</plugin>
</plugins>