Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a project that fails with:

Caused by: java.lang.ClassNotFoundException: app.Main
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at org.codehaus.mojo.exec.ExecJavaMojo$1.run(ExecJavaMojo.java:283)
at java.lang.Thread.run(Unknown Source)

It's not detecting anything in src/main/java relative to the pom file. This is in Eclipse. Please help with this. I truly have no clue why it is behaving like this. Other projects execute fine. It throws the same error regardless of any class specified in app or without a package.

share|improve this question

1 Answer

up vote 1 down vote accepted

There are no classes in src/main/java. Those go in target/classes. You need to compile before running exec:java:

mvn compile exec:java -Dexec.mainClass=app.Main
share|improve this answer
I thought that target included compile. :( – dlots Oct 4 '11 at 17:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.