You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2007/03/15 02:05:26 UTC

svn commit: r518412 - in /incubator/cxf/trunk: pom.xml testutils/pom.xml

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>



RE: svn commit: r518412 - in /incubator/cxf/trunk: pom.xml testutils/pom.xml

Posted by Jim Ma <ji...@iona.com>.
I also get the same compile error in testutils on Windows XP.  I believe this is caused by  
jdk bug (http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6198196). 

I think it need a workaround to fix this issue in compiler plugin 2.0.2. 
 
Regards

Jim


> -----Original Message-----
> From: James Mao [mailto:james.mao@iona.com]
> Sent: Thursday, March 15, 2007 2:29 PM
> To: cxf-dev@incubator.apache.org
> Cc: cxf-commits@incubator.apache.org
> Subject: Re: svn commit: r518412 - in /incubator/cxf/trunk: pom.xml
> testutils/pom.xml
> 
> 
> 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>
>
>
>
>   


Re: svn commit: r518412 - in /incubator/cxf/trunk: pom.xml testutils/pom.xml

Posted by James Mao <ja...@iona.com>.
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>
>
>
>
>   


Re: svn commit: r518412 - in /incubator/cxf/trunk: pom.xml testutils/pom.xml

Posted by James Mao <ja...@iona.com>.
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>
>
>
>
>