i have written a java project with eclipse. Now i want to manage it under maven. The method to transplant is i create a new maven project with m2eclipse, and copy all java and used jar to the according dir, which means i put the java files into src/main/java, and put jar files to src/main/resource.
The problem is: When i build this project with maven, the manifest file in result jar include No classpath info.
i have found that i can use the local maven repo, but i don't think this is a good solution for me.
i want to use the jars in the src/main/resource dir, and i want to write the jar names into the manifest file.
how can i do it???