You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tika.apache.org by ju...@apache.org on 2009/05/22 22:46:45 UTC

svn commit: r777706 - /lucene/tika/trunk/tika-parsers/pom.xml

Author: jukka
Date: Fri May 22 20:46:45 2009
New Revision: 777706

URL: http://svn.apache.org/viewvc?rev=777706&view=rev
Log:
TIKA-228: Add OSGi metadata to Tika

Added simple OSGi metadata also to tika-parsers.

Modified:
    lucene/tika/trunk/tika-parsers/pom.xml

Modified: lucene/tika/trunk/tika-parsers/pom.xml
URL: http://svn.apache.org/viewvc/lucene/tika/trunk/tika-parsers/pom.xml?rev=777706&r1=777705&r2=777706&view=diff
==============================================================================
--- lucene/tika/trunk/tika-parsers/pom.xml (original)
+++ lucene/tika/trunk/tika-parsers/pom.xml Fri May 22 20:46:45 2009
@@ -33,7 +33,9 @@
   </parent>
 
   <artifactId>tika-parsers</artifactId>
+  <packaging>bundle</packaging>
   <name>Apache Tika parsers</name>
+  <url>http://lucene.apache.org/tika/</url>
 
   <properties>
     <poi.version>3.5-beta5</poi.version>
@@ -98,4 +100,22 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>
+              org.apache.tika.parser.*;version=${project.version}
+            </Export-Package>
+            <Bundle-DocURL>${project.url}</Bundle-DocURL>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+
 </project>