Never mind. I just responded to the orginal thread from Mark and a fix has been checked in. Please update and try again.
Thanks, Raymond From: ant elder Sent: Tuesday, August 12, 2008 9:18 AM To: [email protected] Subject: Re: svn commit: r684808 - /tuscany/java/sca/modules/tracing-aspectj/pom.xml I've tried Maven 2.0.9 and running mvn -U -N in the top level, modules and tracing-aspectj folders but still have the problem. Will take ages to run mvn -U on all the modules, which snapshot has changed? ...ant On Tue, Aug 12, 2008 at 5:07 PM, Raymond Feng <[EMAIL PROTECTED]> wrote: Hi, I had successful build on both Windows and Linux before the commit. I'm on Maven 2.0.9. Can you try it? Can you also try mvn -U? Thanks, Raymond From: ant elder Sent: Tuesday, August 12, 2008 8:34 AM To: [email protected] Subject: Re: svn commit: r684808 - /tuscany/java/sca/modules/tracing-aspectj/pom.xml This breaks for me now as it doesn't like a space in the local repository directory name: [INFO] Surefire report directory: C:\Tuscany\SVN\trunk\modules\tracing-aspectj\target\surefire-reports Error occurred during initialization of VM Error opening zip file: C:\Documents agent library failed to init: instrument ...ant On Mon, Aug 11, 2008 at 5:47 PM, <[EMAIL PROTECTED]> wrote: Author: rfeng Date: Mon Aug 11 09:47:12 2008 New Revision: 684808 URL: http://svn.apache.org/viewvc?rev=684808&view=rev Log: Fix build error in certain platform where " is not handled correctly Modified: tuscany/java/sca/modules/tracing-aspectj/pom.xml Modified: tuscany/java/sca/modules/tracing-aspectj/pom.xml URL: http://svn.apache.org/viewvc/tuscany/java/sca/modules/tracing-aspectj/pom.xml?rev=684808&r1=684807&r2=684808&view=diff ============================================================================== --- tuscany/java/sca/modules/tracing-aspectj/pom.xml (original) +++ tuscany/java/sca/modules/tracing-aspectj/pom.xml Mon Aug 11 09:47:12 2008 @@ -61,7 +61,7 @@ <forkMode>once</forkMode> <!-- I hit a bug in maven-surefire-plugin http://jira.codehaus.org/browse/SUREFIRE-128 --> - <argLine>-ea -Xmx128m -javaagent:"${settings.localRepository}/org/aspectj/aspectjweaver/1.6.1/aspectjweaver-1.6.1.jar"</argLine> + <argLine>-ea -Xmx128m -javaagent:${settings.localRepository}/org/aspectj/aspectjweaver/1.6.1/aspectjweaver-1.6.1.jar</argLine> </configuration> </plugin> </plugins>
