summaryrefslogtreecommitdiffstats
path: root/bundle-plugin-test/test-bundles/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/test-bundles/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/test-bundles/pom.xml')
-rw-r--r--bundle-plugin-test/test-bundles/pom.xml10
1 files changed, 9 insertions, 1 deletions
diff --git a/bundle-plugin-test/test-bundles/pom.xml b/bundle-plugin-test/test-bundles/pom.xml
index b18c0b9ba3f..285efd6183e 100644
--- a/bundle-plugin-test/test-bundles/pom.xml
+++ b/bundle-plugin-test/test-bundles/pom.xml
@@ -27,8 +27,16 @@
<version>${project.version}</version>
<executions>
<execution>
+ <id>generate-classpath-mappings</id>
+ <phase>generate-test-sources</phase>
+ <goals>
+ <goal>generate-bundle-classpath-mappings</goal>
+ </goals>
+ </execution>
+ <execution>
<id>package-test-bundles</id>
- <phase>process-classes</phase>
+ <!-- Must be done after generating classpath-mappings and copying it in the 'main' bundle. -->
+ <phase>test-compile</phase>
<goals>
<goal>generate-osgi-manifest</goal>
<goal>assemble-container-plugin</goal>