In Eclipse Helios, the m2eclipse plugin doesn't include projects in my local workspace in any run configuration.
I've set up this test scenario:
ProjectA
+ src/main/java/a/TestInA.java
+ pom.xml
ProjectB
+ src/main/java/b/TestInB.java ("main()" calls "a.TestInA.main()")
+ pom.xml (includes reference to ProjectA)
The flag "Resolve dependencies from Workspace projects" is set on both projects. This works beautifully while compiling, i.e. compiler finds reference to "a.TestInA" in "b.TestInB", and the "Maven dependencies" list includes a reference to "ProjectA". But when I try to actually run "b.TestInB", I get a NoClassDefFoundError:
Exception in thread "main" java.lang.NoClassDefFoundError: a/TestInA
at b.TestInB.main(TestInB.java:13)
Caused by: java.lang.ClassNotFoundException: a.TestInA
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:307)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
... 1 more
Indeed, the system property "java.class.path" doesn't include ProjectA's "target/classes" folder (or any other folder for that matter).
These are my installed versions:
- Eclipse: Helios Service Release 2 (build id: 20110301-1815)
- m2eclipse: 0.12.1 (build id: 20110112-1712)