You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by si...@apache.org on 2019/06/18 11:45:34 UTC

[sling-whiteboard] 04/05: [feature-diff][r2f] artifacts correctly made bundles

This is an automated email from the ASF dual-hosted git repository.

simonetripodi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git

commit 1967a95f1a9737851e6be80007b8e610ff52286a
Author: Simo Tripodi <st...@adobe.com>
AuthorDate: Tue Jun 18 13:29:15 2019 +0200

    [feature-diff][r2f] artifacts correctly made bundles
---
 feature-diff/pom.xml    | 11 +++++++++++
 runtime2feature/pom.xml |  1 +
 2 files changed, 12 insertions(+)

diff --git a/feature-diff/pom.xml b/feature-diff/pom.xml
index 7e18df3..365744d 100644
--- a/feature-diff/pom.xml
+++ b/feature-diff/pom.xml
@@ -29,6 +29,7 @@
 
   <artifactId>org.apache.sling.feature.diff</artifactId>
   <version>0.0.1-SNAPSHOT</version>
+  <packaging>bundle</packaging>
 
   <name>Apache Sling Feature Model diff tool</name>
   <description>Feature Model diff tool for Apache Sling</description>
@@ -90,4 +91,14 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>
diff --git a/runtime2feature/pom.xml b/runtime2feature/pom.xml
index 85563a6..d0046be 100644
--- a/runtime2feature/pom.xml
+++ b/runtime2feature/pom.xml
@@ -29,6 +29,7 @@
 
   <artifactId>org.apache.sling.feature.r2f</artifactId>
   <version>0.0.1-SNAPSHOT</version>
+  <packaging>bundle</packaging>
 
   <name>Apache Sling Feature Model runtime creator</name>
   <description>Feature Model runtime creator tool for Apache Sling</description>