In my project i separated all integration(junit) and selenium(testng) tests into a maven module. The tests are executed via maven on the parent module. so before integration/selenium testing the main module is built and some properties are set. (jenkins runs all tests on every build)
now i need to run this module's tests independent from main module (especially the selenium tests must be executed externally). how to achieve that? is there a "jar-with-dependencies" for tests.
