summaryrefslogtreecommitdiffstats
path: root/jdisc_core_test
diff options
context:
space:
mode:
authorgjoranv <gv@oath.com>2018-07-03 14:37:38 +0200
committergjoranv <gv@oath.com>2018-07-03 14:37:38 +0200
commit9383f8ccae8af4635c08d8b82985b9ec3100dd62 (patch)
tree1b55513a2a547d9d233c25340a2d794d56c1dfe3 /jdisc_core_test
parent9387b79d50d0a41ac7ed8493d46341dda5f926d7 (diff)
Use our bundle-plugin for one of the integration test bundles.
Diffstat (limited to 'jdisc_core_test')
-rw-r--r--jdisc_core_test/test_bundles/cert-b/pom.xml13
-rw-r--r--jdisc_core_test/test_bundles/cert-b/src/main/java/com/yahoo/jdisc/bundle/b/package-info.java4
2 files changed, 9 insertions, 8 deletions
diff --git a/jdisc_core_test/test_bundles/cert-b/pom.xml b/jdisc_core_test/test_bundles/cert-b/pom.xml
index fb2a18ebc97..c634dda581a 100644
--- a/jdisc_core_test/test_bundles/cert-b/pom.xml
+++ b/jdisc_core_test/test_bundles/cert-b/pom.xml
@@ -12,20 +12,17 @@
</parent>
<artifactId>cert-b</artifactId>
<version>6-SNAPSHOT</version>
- <packaging>bundle</packaging>
+ <packaging>container-plugin</packaging>
<name>${project.artifactId}</name>
<build>
<plugins>
<plugin>
- <groupId>org.apache.felix</groupId>
- <artifactId>maven-bundle-plugin</artifactId>
+ <groupId>com.yahoo.vespa</groupId>
+ <artifactId>bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
- <instructions>
- <Export-Package>
- com.yahoo.jdisc.bundle.b
- </Export-Package>
- </instructions>
+ <!-- The Vespa bundle-plugin doesn't include groupId. TODO Vespa 7: remove if that is fixed. -->
+ <Bundle-SymbolicName>${project.groupId}.${project.artifactId}</Bundle-SymbolicName>
</configuration>
</plugin>
</plugins>
diff --git a/jdisc_core_test/test_bundles/cert-b/src/main/java/com/yahoo/jdisc/bundle/b/package-info.java b/jdisc_core_test/test_bundles/cert-b/src/main/java/com/yahoo/jdisc/bundle/b/package-info.java
new file mode 100644
index 00000000000..2773287114b
--- /dev/null
+++ b/jdisc_core_test/test_bundles/cert-b/src/main/java/com/yahoo/jdisc/bundle/b/package-info.java
@@ -0,0 +1,4 @@
+@ExportPackage
+package com.yahoo.jdisc.bundle.b;
+
+import com.yahoo.osgi.annotation.ExportPackage;