Hi I have project in eclipse with packages
com.mypackage.abc.java
com.mypackage.def.java
I can run both programs in eclipse fine, but i want to run it from command prompt.
The root of my source file is c:\project\src
Classes for these are at c:\project\target
so I change directory to
c:\project\target
java -classpath . com.mypacakage.abc
but it returns NoClassDefFoundError
can someone please help.

