Author: veithen
Date: Mon Nov 1 20:47:57 2010
New Revision: 1029827
URL: http://svn.apache.org/viewvc?rev=1029827&view=rev
Log:
* Modified the build so that the version and date in the README.txt file are updated automatically.
* Fixed the site URL and mailing list addresses.
* Some other cleanup.
Removed:
webservices/commons/trunk/modules/axiom/src/main/assembly/filter.properties
Modified:
webservices/commons/trunk/modules/axiom/README.txt
webservices/commons/trunk/modules/axiom/RELEASE-NOTE.txt
webservices/commons/trunk/modules/axiom/pom.xml
Modified: webservices/commons/trunk/modules/axiom/README.txt
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/README.txt?rev=1029827&r1=1029826&r2=1029827&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/README.txt (original)
+++ webservices/commons/trunk/modules/axiom/README.txt Mon Nov 1 20:47:57 2010
@@ -1,7 +1,7 @@
======================================================
-Apache AXIOM 1.2.8 (January 15, 2009)
+Apache Axiom ${axiom_version} (${build_date})
-http://ws.apache.org/commons/axiom/
+http://ws.apache.org/axiom/
------------------------------------------------------
___________________
@@ -14,12 +14,14 @@ ___________________
Support
===================
-Any problem with this release can be reported to ws-commons mailing list.
-If you are sending an email to the mailing list make sure to add the [AXIOM] prefix to the
subject.
+Any problem with this release can be reported to Apache Web Services mailing lists.
+If you are sending an email to the mailing list make sure to add the [Axiom] prefix to the
subject.
Mailing list subscription:
-commons-dev-subscribe@ws.apache.org
-Thank you for using AXIOM!
+users-subscribe@ws.apache.org
+dev-subscribe@ws.apache.org
-The Apache AXIOM Team.
+Thank you for using Axiom!
+
+The Apache Axiom Team.
Modified: webservices/commons/trunk/modules/axiom/RELEASE-NOTE.txt
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/RELEASE-NOTE.txt?rev=1029827&r1=1029826&r2=1029827&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/RELEASE-NOTE.txt (original)
+++ webservices/commons/trunk/modules/axiom/RELEASE-NOTE.txt Mon Nov 1 20:47:57 2010
@@ -1,7 +1,7 @@
===========================================
- Apache AXIOM 1.2.10 Release Note
+ Apache Axiom 1.2.10 Release Note
===========================================
Modified: webservices/commons/trunk/modules/axiom/pom.xml
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/pom.xml?rev=1029827&r1=1029826&r2=1029827&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/pom.xml (original)
+++ webservices/commons/trunk/modules/axiom/pom.xml Mon Nov 1 20:47:57 2010
@@ -259,6 +259,27 @@
</pluginManagement>
<plugins>
<plugin>
+ <groupId>org.codehaus.gmaven</groupId>
+ <artifactId>gmaven-plugin</artifactId>
+ <version>1.2</version>
+ <executions>
+ <execution>
+ <id>generate-timestamp</id>
+ <phase>initialize</phase>
+ <goals>
+ <goal>execute</goal>
+ </goals>
+ <configuration>
+ <source>
+ import java.util.Date
+ import java.text.MessageFormat
+ project.properties['build_date'] = MessageFormat.format("{0,date,MMMMM
dd, yyyy}", new Date())
+ </source>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
|