Используйте команду exec-maven-plugin
запуска Java с jar
аргументом во время integration-test
фазы:
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.3.2</version> <configuration> <executable>java</executable> <arguments> <argument>-jar</argument> <argument>target/myJar-1.0-SNAPSHOT.jar</argument> </arguments> </configuration> <executions> <execution> <id>integration-test</id> <phase>integration-test</phase> <goals> <goal>integration-test</goal> </goals> </execution> </executions> </plugin>
В Eclipse щелкните правой кнопкой мыши, выберите Run As
и Maven Test
запустите его.
Рекомендации