I have 2 maven projects, one for the sources: ProjSource, containing one class: Class-A.. and another one: ProjTest containing a test class for Class-A named Class-A-Test . I want my test class to be run when I call an mvn:install on ProjSource.
What is the simplest way to perform such thing? note that my experience with unit tests is very basic.. I don't know how to tell Maven that Class-A-Test is designed to test Class-A..
I followed the steps described using the maven-jar-plugin with test-jar Goal here and defining the resulting *******-tests.jar as a dependency for ProjSource with:
<type>test-jar</type>
<scope>test</scope>
but when i run an mvn:install, the output says that: "There are no tests to run". Have I missed something ?
Any help is highly appreciable, and many thanks in advance !
Regards,