I have following project structure:
- Project "parent-project" does not have any source file and has subprojects as "junit-wrapper","child1-test" and "child2-test".
- Subproject "junit-wrapper" has only java source inside src/main/java and this is basically created to wrap all the dependencies and binaries under the hierarchy "parent-project".
- Subproject "child1-test" and "child2-test" has no source files and only contains subprojects as "child1-env" and "child2-env".
- Subproject "child1-env" and "child2-env" has only junits inside src/test/java.
I want to build a super jar(within junit-wrapper) by building parent pom.xml
I hope this is possible by using maven-assembly-plugin but don't know how to configure this in pom.xml. what should be my pom.xml or assembly.xml(on using plugin) entries in order to ensure this is achieved?
please suggest.
thanks.