I have an abc artifact that has some tests. I have different versions of abc in my repository. Now I want to be able to run the latest tests against the "old build" of the project.
I tried to add the artifact of dependency testing itself, but this (of course) leads to a cyclic Maven reactor test error when creating tests with:
mvn compiler: testCompile mvn surefire: test
Is there any smart way to run tests with a previous old build / artifact?
Should I create a new pom.xml in which I determine the execution of the solo test? Or should I add a postfix to my current artifact when running tests? (This will avoid a cyclic link error)
source share