After fork=true in testutil, it failed on windows platform.
Can we change it back to default settings?
Where do we use continuum? can we pass the setting just in env where we
run the continuum?
Thanks.
James.
Author: dkulp
Date: Wed Mar 14 18:05:25 2007
New Revision: 518412
URL: http://svn.apache.org/viewvc?view=rev&rev=518412
Log:
Use forking for the compiler in testutils. Hopefully to allow continuum to
complete.
Modified:
incubator/cxf/trunk/pom.xml
incubator/cxf/trunk/testutils/pom.xml
Modified: incubator/cxf/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/pom.xml?view=diff&rev=518412&r1=518411&r2=518412
==============================================================================
--- incubator/cxf/trunk/pom.xml (original)
+++ incubator/cxf/trunk/pom.xml Wed Mar 14 18:05:25 2007
@@ -41,6 +41,11 @@
<maven>2.0.5</maven>
</prerequisites>
+ <properties>
+ <compiler.fork>false</compiler.fork>
+ </properties>
+
+
<distributionManagement>
<snapshotRepository>
<id>apache.snapshots</id>
@@ -361,10 +366,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.0.1</version>
+ <version>2.0.2</version>
<configuration>
<source>1.5</source>
<target>1.5</target>
+ <maxmem>256M</maxmem>
+ <fork>${compiler.fork}</fork>
</configuration>
</plugin>
<plugin>
Modified: incubator/cxf/trunk/testutils/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/cxf/trunk/testutils/pom.xml?view=diff&rev=518412&r1=518411&r2=518412
==============================================================================
--- incubator/cxf/trunk/testutils/pom.xml (original)
+++ incubator/cxf/trunk/testutils/pom.xml Wed Mar 14 18:05:25 2007
@@ -58,6 +58,9 @@
</dependency>
</dependencies>
+ <properties>
+ <compiler.fork>true</compiler.fork>
+ </properties>
<build>
<plugins>