summaryrefslogtreecommitdiffstats
path: root/sandbox/slaws/runtimecompat/2xlauncher/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/slaws/runtimecompat/2xlauncher/pom.xml')
-rw-r--r--sandbox/slaws/runtimecompat/2xlauncher/pom.xml19
1 files changed, 18 insertions, 1 deletions
diff --git a/sandbox/slaws/runtimecompat/2xlauncher/pom.xml b/sandbox/slaws/runtimecompat/2xlauncher/pom.xml
index e233ea16d4..c79f623674 100644
--- a/sandbox/slaws/runtimecompat/2xlauncher/pom.xml
+++ b/sandbox/slaws/runtimecompat/2xlauncher/pom.xml
@@ -27,6 +27,7 @@
<version>1.0-SNAPSHOT</version>
<artifactId>2x-launcher</artifactId>
<name>Apache Tuscany SCA 2.x Launcher</name>
+ <packaging>bundle</packaging>
<dependencies>
<dependency>
@@ -58,6 +59,22 @@
</dependencies>
<build>
- <finalName>${artifactId}</finalName>
+ <!-- finalName>${artifactId}</finalName-->
+ <plugins>
+
+ <plugin>
+ <groupId>org.apache.felix</groupId>
+ <artifactId>maven-bundle-plugin</artifactId>
+ <extensions>true</extensions>
+ <configuration>
+ <instructions>
+ <Import-Package>org.apache.tuscany.sca.node;version="[2.0.0,2.0.0]"</Import-Package>
+ <Export-Package>launcher</Export-Package>
+ <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+ </instructions>
+ </configuration>
+ </plugin>
+
+ </plugins>
</build>
</project>