Author: gdaniels Date: Sat Jan 3 17:15:02 2009 New Revision: 731148 URL: http://svn.apache.org/viewvc?rev=731148&view=rev Log: More version updates, also put Bundle-Version: header into MANIFEST.MF programatically so we have less places to update the version...
Modified: webservices/commons/tags/axiom/axiom-1.2.8/README.txt webservices/commons/tags/axiom/axiom-1.2.8/RELEASE-NOTE.txt webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-api/pom.xml webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-api/src/main/resources/META-INF/MANIFEST.MF webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-dom/pom.xml webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-dom/src/main/resources/META-INF/MANIFEST.MF webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-impl/pom.xml webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-impl/src/main/resources/META-INF/MANIFEST.MF webservices/commons/tags/axiom/axiom-1.2.8/pom.xml Modified: webservices/commons/tags/axiom/axiom-1.2.8/README.txt URL: http://svn.apache.org/viewvc/webservices/commons/tags/axiom/axiom-1.2.8/README.txt?rev=731148&r1=731147&r2=731148&view=diff ============================================================================== --- webservices/commons/tags/axiom/axiom-1.2.8/README.txt (original) +++ webservices/commons/tags/axiom/axiom-1.2.8/README.txt Sat Jan 3 17:15:02 2009 @@ -1,5 +1,5 @@ ====================================================== -Apache AXIOM 1.2.7 (April 21, 2008) +Apache AXIOM 1.2.8 (January XX, 2009) http://ws.apache.org/commons/axiom/ ------------------------------------------------------ Modified: webservices/commons/tags/axiom/axiom-1.2.8/RELEASE-NOTE.txt URL: http://svn.apache.org/viewvc/webservices/commons/tags/axiom/axiom-1.2.8/RELEASE-NOTE.txt?rev=731148&r1=731147&r2=731148&view=diff ============================================================================== --- webservices/commons/tags/axiom/axiom-1.2.8/RELEASE-NOTE.txt (original) +++ webservices/commons/tags/axiom/axiom-1.2.8/RELEASE-NOTE.txt Sat Jan 3 17:15:02 2009 @@ -1,7 +1,7 @@ =========================================== - Apache AXIOM 1.2.7 Release Note + Apache AXIOM 1.2.8 Release Note =========================================== Modified: webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-api/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-api/pom.xml?rev=731148&r1=731147&r2=731148&view=diff ============================================================================== --- webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-api/pom.xml (original) +++ webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-api/pom.xml Sat Jan 3 17:15:02 2009 @@ -22,12 +22,12 @@ <parent> <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom</artifactId> - <version>1.2.8-SNAPSHOT</version> + <version>1.2.8</version> <!-- Should better be ${axiom.version} --> </parent> <artifactId>axiom-api</artifactId> <name>Axiom API</name> - <version>1.2.8-SNAPSHOT</version> + <version>1.2.8</version> <description>The Axiom API</description> <dependencies> <dependency> @@ -79,8 +79,8 @@ <tasks> <copy todir="${project.build.directory}/legal-files"> <fileset dir="../.."> - <include name="LICENSE.txt"/> - <include name="NOTICE.txt"/> + <include name="LICENSE.txt" /> + <include name="NOTICE.txt" /> </fileset> </copy> </tasks> @@ -96,6 +96,10 @@ <configuration> <archive> <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile> + <manifestEntries> + <!-- Put the correct Bundle-Version: in the manifest --> + <Bundle-Version>${version}</Bundle-Version> + </manifestEntries> </archive> </configuration> </plugin> @@ -122,4 +126,4 @@ </plugin> </plugins> </build> -</project> +</project> \ No newline at end of file Modified: webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-api/src/main/resources/META-INF/MANIFEST.MF URL: http://svn.apache.org/viewvc/webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-api/src/main/resources/META-INF/MANIFEST.MF?rev=731148&r1=731147&r2=731148&view=diff ============================================================================== --- webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-api/src/main/resources/META-INF/MANIFEST.MF (original) +++ webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-api/src/main/resources/META-INF/MANIFEST.MF Sat Jan 3 17:15:02 2009 @@ -36,7 +36,6 @@ org.apache.axiom.om, org.apache.axiom.soap.impl.builder, org.apache.axiom.soap -Bundle-Version: 1.2.7 Bundle-Name: Axiom API Bundle-DocURL: http://www.apache.org/ Bundle-ManifestVersion: 2 Modified: webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-dom/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-dom/pom.xml?rev=731148&r1=731147&r2=731148&view=diff ============================================================================== --- webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-dom/pom.xml (original) +++ webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-dom/pom.xml Sat Jan 3 17:15:02 2009 @@ -103,7 +103,11 @@ <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> - <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile> + <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile> + <manifestEntries> + <!-- Put the correct Bundle-Version: in the manifest --> + <Bundle-Version>${version}</Bundle-Version> + </manifestEntries> </archive> </configuration> </plugin> Modified: webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-dom/src/main/resources/META-INF/MANIFEST.MF URL: http://svn.apache.org/viewvc/webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-dom/src/main/resources/META-INF/MANIFEST.MF?rev=731148&r1=731147&r2=731148&view=diff ============================================================================== --- webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-dom/src/main/resources/META-INF/MANIFEST.MF (original) +++ webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-dom/src/main/resources/META-INF/MANIFEST.MF Sat Jan 3 17:15:02 2009 @@ -33,7 +33,6 @@ org.apache.axiom.soap.impl.dom.soap11, org.apache.axiom.soap.impl.dom.soap12, org.apache.axiom.soap.impl.dom -Bundle-Version: 1.2.7 Bundle-Name: Axiom DOM Bundle-DocURL: http://www.apache.org/ Bundle-ManifestVersion: 2 Modified: webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-impl/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-impl/pom.xml?rev=731148&r1=731147&r2=731148&view=diff ============================================================================== --- webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-impl/pom.xml (original) +++ webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-impl/pom.xml Sat Jan 3 17:15:02 2009 @@ -102,9 +102,13 @@ <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> - <archive> - <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile> - </archive> + <archive> + <manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile> + <manifestEntries> + <!-- Put the correct Bundle-Version: in the manifest --> + <Bundle-Version>${version}</Bundle-Version> + </manifestEntries> + </archive> </configuration> </plugin> <!-- Attach a JAR with the test classes so that we can reuse them in other modules Modified: webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-impl/src/main/resources/META-INF/MANIFEST.MF URL: http://svn.apache.org/viewvc/webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-impl/src/main/resources/META-INF/MANIFEST.MF?rev=731148&r1=731147&r2=731148&view=diff ============================================================================== --- webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-impl/src/main/resources/META-INF/MANIFEST.MF (original) +++ webservices/commons/tags/axiom/axiom-1.2.8/modules/axiom-impl/src/main/resources/META-INF/MANIFEST.MF Sat Jan 3 17:15:02 2009 @@ -23,7 +23,6 @@ org.apache.axiom.soap.impl.llom.soap11, org.apache.axiom.soap.impl.llom.soap12, org.apache.axiom.soap.impl.llom -Bundle-Version: 1.2.7 Bundle-Name: Axiom API Bundle-DocURL: http://www.apache.org/ Bundle-ManifestVersion: 2 Modified: webservices/commons/tags/axiom/axiom-1.2.8/pom.xml URL: http://svn.apache.org/viewvc/webservices/commons/tags/axiom/axiom-1.2.8/pom.xml?rev=731148&r1=731147&r2=731148&view=diff ============================================================================== --- webservices/commons/tags/axiom/axiom-1.2.8/pom.xml (original) +++ webservices/commons/tags/axiom/axiom-1.2.8/pom.xml Sat Jan 3 17:15:02 2009 @@ -22,7 +22,7 @@ <groupId>org.apache.ws.commons.axiom</groupId> <artifactId>axiom</artifactId> <name>Axiom</name> - <version>1.2.8-SNAPSHOT</version> + <version>1.2.8</version> <!-- Should better be ${axiom.version} --> <packaging>pom</packaging> <description>AXIOM API</description> @@ -200,7 +200,7 @@ <contributors> <contributor> <name>Dharshana Dias</name> - <email/> + <email /> <organization>Lanka Software Foundation / University of Moratuwa</organization> </contributor> <contributor> @@ -210,7 +210,7 @@ </contributor> <contributor> <name>Chinthaka Thilakarathne</name> - <email/> + <email /> <organization>Lanka Software Foundation / University of Moratuwa</organization> </contributor> <contributor> @@ -226,10 +226,9 @@ </license> </licenses> <scm> - <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/commons/trunk/modules/axiom</connection> - <developerConnection> - scm:svn:https://svn.apache.org/repos/asf/webservices/commons/trunk/modules/axiom</developerConnection> - <url>http://svn.apache.org/viewcvs.cgi/webservices/commons/trunk/modules/axiom</url> + <connection>scm:svn:http://svn.apache.org/repos/asf/webservices/commons/tags/axiom-1.2.8</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/webservices/commons/tags/axiom-1.2.8</developerConnection> + <url>http://svn.apache.org/viewcvs.cgi/webservices/commons/tags/axiom-1.2.8</url> </scm> <organization> <name>The Apache Software Foundation</name> @@ -259,7 +258,7 @@ <activation> <property> <name>release</name> - <value/> + <value /> </property> </activation> <build> @@ -292,7 +291,7 @@ <activation> <property> <name>rc</name> - <value/> + <value /> </property> </activation> <build> @@ -539,4 +538,4 @@ <stax.impl.version>1.0.1</stax.impl.version> --> </properties> -</project> +</project> \ No newline at end of file