summaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test/integration-test/pom.xml
diff options
context:
space:
mode:
authorgjoranv <gv@verizonmedia.com>2019-10-21 16:31:58 +0200
committergjoranv <gv@verizonmedia.com>2019-10-21 16:31:58 +0200
commit30bc11220789b1cfa16f8083ce3eed2fe8b04fb5 (patch)
treed9ac5f3911e786bf0aa304226619eb6f15bb43cd /bundle-plugin-test/integration-test/pom.xml
parent14819219fdfb3740bbe14e0eaaffc9b04f7daf2f (diff)
Use surefire instead of failsafe plugin.
- No need to use integration tests after test bundles have been moved to separate modules.
Diffstat (limited to 'bundle-plugin-test/integration-test/pom.xml')
-rw-r--r--bundle-plugin-test/integration-test/pom.xml16
1 files changed, 3 insertions, 13 deletions
diff --git a/bundle-plugin-test/integration-test/pom.xml b/bundle-plugin-test/integration-test/pom.xml
index 642d74fb0e9..42d3b0e4d62 100644
--- a/bundle-plugin-test/integration-test/pom.xml
+++ b/bundle-plugin-test/integration-test/pom.xml
@@ -56,23 +56,13 @@
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-failsafe-plugin</artifactId>
- <version>2.9</version>
- <executions>
- <execution>
- <id>integration-test</id>
- <goals>
- <goal>integration-test</goal>
- <goal>verify</goal>
- </goals>
- </execution>
- </executions>
+ <artifactId>maven-surefire-plugin</artifactId>
<configuration>
- <trimStackTrace>false</trimStackTrace>
+ <redirectTestOutputToFile>${test.hide}</redirectTestOutputToFile>
<systemPropertyVariables>
<test.bundle.path>${project.build.directory}/dependency</test.bundle.path>
- <redirectTestOutputToFile>${test.hide}</redirectTestOutputToFile>
</systemPropertyVariables>
+ <trimStackTrace>false</trimStackTrace>
</configuration>
</plugin>
<plugin>