I have a project with src/main/java and src/test/java structure. It is fairly straightforward to use the maven-assembly-plugin, the jar-with-dependencies descriptor, and the mainClass manifest in order to create a jar file that includes a main class from the src/main/java directory, and all classes on which this main class depends, such that the main class may be executed using the 'java -jar project-jar-with-dependencies.jar' command. How might I create a similar jar file for a main class from the src/test/java directory?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|