You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by di...@apache.org on 2008/04/04 04:46:53 UTC

svn commit: r644587 - in /webservices/commons/trunk/modules/XmlSchema: pom.xml src/main/resources/META-INF/MANIFEST.MF

Author: dims
Date: Thu Apr  3 19:46:52 2008
New Revision: 644587

URL: http://svn.apache.org/viewvc?rev=644587&view=rev
Log:
get rid of the maven-bundle-plugin. use an explicit manifest

Added:
    webservices/commons/trunk/modules/XmlSchema/src/main/resources/META-INF/MANIFEST.MF
Modified:
    webservices/commons/trunk/modules/XmlSchema/pom.xml

Modified: webservices/commons/trunk/modules/XmlSchema/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/pom.xml?rev=644587&r1=644586&r2=644587&view=diff
==============================================================================
--- webservices/commons/trunk/modules/XmlSchema/pom.xml (original)
+++ webservices/commons/trunk/modules/XmlSchema/pom.xml Thu Apr  3 19:46:52 2008
@@ -220,24 +220,13 @@
 
         <plugins>
             <plugin>
-              <groupId>org.apache.felix</groupId>
-              <artifactId>maven-bundle-plugin</artifactId>
-              <version>${bundle.plugin.version}</version>
-              <configuration>
-                  <instructions>
-                      <Bundle-Version>${xmlschema.osgi.version}</Bundle-Version>
-                      <!--  The default maven resources will be automatically included ! -->   
-                  </instructions>
-              </configuration>
-              <executions>
-                <execution>
-                  <id>bundle-manifest</id>
-                  <phase>process-classes</phase>
-                  <goals>
-                    <goal>manifest</goal>
-                  </goals>
-                </execution>
-              </executions>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
+                    </archive>
+                </configuration>
             </plugin>
             <plugin>
                 <artifactId>maven-antrun-plugin</artifactId>

Added: webservices/commons/trunk/modules/XmlSchema/src/main/resources/META-INF/MANIFEST.MF
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/XmlSchema/src/main/resources/META-INF/MANIFEST.MF?rev=644587&view=auto
==============================================================================
--- webservices/commons/trunk/modules/XmlSchema/src/main/resources/META-INF/MANIFEST.MF (added)
+++ webservices/commons/trunk/modules/XmlSchema/src/main/resources/META-INF/MANIFEST.MF Thu Apr  3 19:46:52 2008
@@ -0,0 +1,23 @@
+Manifest-Version: 1.0
+Bundle-License: http://www.apache.org/licenses/LICENSE-2.0.txt
+Import-Package: 
+ javax.xml.namespace,
+ javax.xml.parsers,
+ javax.xml.transform,
+ javax.xml.transform.dom,
+ javax.xml.transform.sax,
+ javax.xml.transform.stream,
+ org.w3c.dom,
+ org.xml.sax
+Export-Package: 
+ org.apache.ws.commons.schema,
+ org.apache.ws.commons.schema.resolver,
+ org.apache.ws.commons.schema.utils,
+ org.apache.ws.commons.schema.constants,
+ org.apache.ws.commons.schema.extensions
+Bundle-Version: 1.4.2
+Bundle-Name: XmlSchema
+Bundle-DocURL: http://www.apache.org/
+Bundle-ManifestVersion: 2
+Bundle-Vendor: Apache Software Foundation
+Bundle-SymbolicName: org.apache.ws.commons.schema.XmlSchema
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org