You are viewing a plain text version of this content. The canonical link for it is here.
Posted to pluto-scm@portals.apache.org by cz...@apache.org on 2008/04/18 11:35:53 UTC

svn commit: r649430 - /portals/pluto/trunk/portlet2-api/pom.xml

Author: cziegeler
Date: Fri Apr 18 02:35:52 2008
New Revision: 649430

URL: http://svn.apache.org/viewvc?rev=649430&view=rev
Log:
Add missing osgi headers.

Modified:
    portals/pluto/trunk/portlet2-api/pom.xml

Modified: portals/pluto/trunk/portlet2-api/pom.xml
URL: http://svn.apache.org/viewvc/portals/pluto/trunk/portlet2-api/pom.xml?rev=649430&r1=649429&r2=649430&view=diff
==============================================================================
--- portals/pluto/trunk/portlet2-api/pom.xml (original)
+++ portals/pluto/trunk/portlet2-api/pom.xml Fri Apr 18 02:35:52 2008
@@ -58,7 +58,30 @@
 				<source>1.5</source>
 				<target>1.5</target>
 			</configuration>
-		</plugin>  
+		</plugin>
+		<plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-jar-plugin</artifactId>
+            <configuration>
+                <archive>
+                    <manifestEntries>
+                        <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
+                        <Bundle-SymbolicName>javax.portlet</Bundle-SymbolicName>
+                        <Bundle-Name>JSR 286</Bundle-Name>
+                        <Bundle-DocURL>http://www.jcp.org/en/jsr/detail?id=286</Bundle-DocURL>
+                        <Export-Package>
+                            javax.portlet;version="2.0.0",
+                            javax.portlet.filter;version="2.0.0"
+                        </Export-Package>
+                        <Import-Package>
+                            org.w3c.dom,
+                            javax.xml.namespace,
+                            javax.servlet.http; version="2.4.0"
+                        </Import-Package>
+                    </manifestEntries>
+                </archive>
+            </configuration>
+        </plugin>
 	</plugins>
   </build>
 </project>