Hello,

The problem appears to be this line:

<argument>org.eclipse.core.launcher.Main -application
org.eclipse.ant.core.antRunner -f
${ECLIPSE_HOME}/plugins/org.eclipse.pde.build_3.2.1.r321_v20060823/scripts/build.xml</argument>

That is all one argument, which is not what you intend. Take a look at the
error message:

[INFO] java.lang.NoClassDefFoundError: org/eclipse/core/launcher/Main 
-applicati
on org/eclipse/ant/core/antRunner -f 
C:\Programme\eclipse/plugins/org/eclipse/pd
e/build_3/2/1/r321_v20060823/scripts/build/xml

Java thinks you're trying to run a class with one really long and strange
classname.

Just break your argument into several: one for the classname and others for
the arguments you want to give your application.

Paul
-- 
View this message in context: 
http://www.nabble.com/exec%3Aexec-java-NoClassDefFoundError-tf2472771.html#a6903908
Sent from the Maven - Users mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to