I have two maven projects:
- This is the framework project and has the dependency classes in the src/main/java
- This is the project that contains my test scripts in the src/test/java
I want to build a jar where both the class files are included from the project in the 2nd project's pom.xml file.
What type of plugin can do the job? I have tried using maven jar plugin and assembly plugin but neither of them solved my problem.