You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by cs...@apache.org on 2015/11/05 13:53:52 UTC

maven-indexer git commit: Make the reader an osgi bundle

Repository: maven-indexer
Updated Branches:
  refs/heads/maven-indexer-5.x c3431b6e8 -> 4c5d1d61e


Make the reader an osgi bundle


Project: http://git-wip-us.apache.org/repos/asf/maven-indexer/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-indexer/commit/4c5d1d61
Tree: http://git-wip-us.apache.org/repos/asf/maven-indexer/tree/4c5d1d61
Diff: http://git-wip-us.apache.org/repos/asf/maven-indexer/diff/4c5d1d61

Branch: refs/heads/maven-indexer-5.x
Commit: 4c5d1d61e9691473053551dee7645ebf0873bb26
Parents: c3431b6
Author: Tamas Cservenak <cs...@Slartibartfast.cservenak.net>
Authored: Thu Nov 5 13:53:34 2015 +0100
Committer: Tamas Cservenak <cs...@Slartibartfast.cservenak.net>
Committed: Thu Nov 5 13:53:34 2015 +0100

----------------------------------------------------------------------
 indexer-reader/pom.xml | 12 ++++++++++++
 1 file changed, 12 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-indexer/blob/4c5d1d61/indexer-reader/pom.xml
----------------------------------------------------------------------
diff --git a/indexer-reader/pom.xml b/indexer-reader/pom.xml
index daf364c..95d821f 100644
--- a/indexer-reader/pom.xml
+++ b/indexer-reader/pom.xml
@@ -28,6 +28,7 @@ under the License.
   </parent>
 
   <artifactId>indexer-reader</artifactId>
+  <packaging>bundle</packaging>
 
   <name>Maven :: Indexer Reader</name>
   <description>
@@ -45,4 +46,15 @@ under the License.
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <version>3.0.0</version>
+        <extensions>true</extensions>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>