Author: rahul
Date: Tue Dec 30 22:00:44 2008
New Revision: 730312
URL: http://svn.apache.org/viewvc?rev=730312&view=rev
Log:
Various POM updates:
* Remove <repositories> handled by parent
* Update <scm> to point to branch URLs
* Add a <distributionManagement> section for the site
* Add the necessary 'rc' profile
* Whitespace and document order changes to keep release plugin happy
Modified:
commons/proper/digester/branches/1_X_LINE/pom.xml
Modified: commons/proper/digester/branches/1_X_LINE/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/digester/branches/1_X_LINE/pom.xml?rev=730312&r1=730311&r2=730312&view=diff
==============================================================================
--- commons/proper/digester/branches/1_X_LINE/pom.xml (original)
+++ commons/proper/digester/branches/1_X_LINE/pom.xml Tue Dec 30 22:00:44 2008
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
-
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
@@ -16,45 +15,32 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<!-- TODO:
* include dtds as resources
* build src jars
-->
-<project
- xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd">
<parent>
<groupId>org.apache.commons</groupId>
<artifactId>commons-parent</artifactId>
<version>11</version>
</parent>
+
<modelVersion>4.0.0</modelVersion>
+ <name>Commons Digester</name>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
- <name>Commons Digester</name>
<version>1.8.1-SNAPSHOT</version>
+ <inceptionYear>2001</inceptionYear>
<description>
- The Digester package lets you configure an XML->Java object mapping module
+ The Digester package lets you configure an XML to Java object mapping
module
which triggers certain actions called rules whenever a particular
pattern of nested XML elements is recognized.
</description>
- <repositories>
- <repository>
- <id>snapshots</id>
- <name>Apache Snapshot repo</name>
- <layout>default</layout>
- <url>http://people.apache.org/repo/m2-snapshot-repository</url>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
- </repositories>
-
<url>http://commons.apache.org/digester/</url>
<issueManagement>
@@ -62,7 +48,11 @@
<url>http://issues.apache.org/jira/browse/DIGESTER</url>
</issueManagement>
- <inceptionYear>2001</inceptionYear>
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/digester/branches/1_X_LINE</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/digester/branches/1_X_LINE</developerConnection>
+
<url>http://svn.apache.org/viewvc/commons/proper/digester/branches/1_X_LINE</url>
+ </scm>
<developers>
<developer>
@@ -167,16 +157,21 @@
</contributor>
</contributors>
- <scm>
-
<connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/digester/trunk</connection>
-
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/digester/trunk</developerConnection>
- <url>http://svn.apache.org/viewvc/commons/proper/digester/trunk</url>
- </scm>
+ <distributionManagement>
+ <!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
+ <site>
+ <id>apache.website</id>
+ <name>Apache Commons Site</name>
+
<url>${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/digester</url>
+ </site>
+ </distributionManagement>
<properties>
+ <maven.compile.source>1.2</maven.compile.source>
+ <maven.compile.target>1.2</maven.compile.target>
<commons.componentid>digester</commons.componentid>
- <commons.release.version>1.8</commons.release.version>
- <commons.binary.suffix></commons.binary.suffix>
+ <commons.release.version>1.8.1</commons.release.version>
+ <commons.rc.version>RC1</commons.rc.version>
<commons.jira.id>DIGESTER</commons.jira.id>
<commons.jira.pid>12310471</commons.jira.pid>
</properties>
@@ -303,6 +298,29 @@
<version>2.3</version>
<!--Use default rules-->
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>clirr-maven-plugin</artifactId>
+ <version>2.2.1</version>
+ <configuration>
+ <comparisonVersion>1.8</comparisonVersion>
+ </configuration>
+ </plugin>
</plugins>
</reporting>
+
+ <profiles>
+ <profile>
+ <id>rc</id>
+ <distributionManagement>
+ <!-- Cannot define in parent ATM, see COMMONSSITE-26 -->
+ <site>
+ <id>apache.website</id>
+ <name>Apache Commons Release Candidate Staging Site</name>
+
<url>${commons.deployment.protocol}://people.apache.org/www/people.apache.org/builds/commons/${commons.componentid}/${commons.release.version}/${commons.rc.version}/site</url>
+ </site>
+ </distributionManagement>
+ </profile>
+ </profiles>
+
</project>