Blob Blame History Raw
--- pom.xml.orig	2007-09-06 14:09:29.000000000 -0400
+++ pom.xml	2007-09-06 14:14:25.000000000 -0400
@@ -11,7 +11,30 @@
   <name>Apache XML-RPC Client Library</name>
   <build>
     <sourceDirectory>src/main/java</sourceDirectory>
-  </build>
+        <plugins>
+	    <plugin>
+		<groupId>org.apache.maven.plugins</groupId>
+		<artifactId>maven-jar-plugin</artifactId>
+		<configuration>
+		    <archive>
+			<manifestEntries>
+			    <Bundle-ManifestVersion>2</Bundle-ManifestVersion>
+			    <Bundle-Name>%Bundle-Name</Bundle-Name>
+			    <Bundle-Localization>plugin</Bundle-Localization>
+			    <Bundle-SymbolicName>org.apache.xmlrpc</Bundle-SymbolicName>
+			    <Bundle-Version>3.0.0.qualifier</Bundle-Version>
+               <Require-Bundle>org.apache.xmlrpc.common</Require-Bundle>
+			    <Export-Package>org.apache.xmlrpc.client, org.apache.xmlrpc.client.util</Export-Package>
+			    <Import-Package>javax.xml.bind, javax.xml.namespace, javax.xml.parsers, org.apache.commons.httpclient, org.apache.commons.httpclient.auth, org.apache.commons.httpclient.methods, org.apache.commons.httpclient.params, org.apache.commons.logging, org.apache.ws.commons.serialize, org.apache.ws.commons.util, org.w3c.dom, org.xml.sax, org.xml.sax.helpers</Import-Package>
+			    <Bundle-RequiredExecutionEnvironment>J2SE-1.4, CDC-1.0/Foundation-1.0, J2SE-1.3</Bundle-RequiredExecutionEnvironment>
+			    <Eclipse-BuddyPolicy>dependent</Eclipse-BuddyPolicy>
+			    <Bundle-Vendor>%Bundle-Vendor.0</Bundle-Vendor>
+			</manifestEntries>
+		    </archive>
+		</configuration>
+	    </plugin>
+	</plugins>
+    </build>
   <dependencies>
     <dependency>
       <groupId>org.apache.xmlrpc</groupId>