Author: bentmann
Date: Wed Sep 3 11:37:21 2008
New Revision: 691720
URL: http://svn.apache.org/viewvc?rev=691720&view=rev
Log:
o Reordered POM
Modified:
maven/shared/trunk/file-management/pom.xml
Modified: maven/shared/trunk/file-management/pom.xml
URL:
http://svn.apache.org/viewvc/maven/shared/trunk/file-management/pom.xml?rev=691720&r1=691719&r2=691720&view=diff
==============================================================================
--- maven/shared/trunk/file-management/pom.xml (original)
+++ maven/shared/trunk/file-management/pom.xml Wed Sep 3 11:37:21 2008
@@ -1,22 +1,24 @@
<?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 this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. 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">
<modelVersion>4.0.0</modelVersion>
@@ -28,13 +30,10 @@
<artifactId>file-management</artifactId>
<version>1.3-SNAPSHOT</version>
+
<name>Maven File Management API</name>
<description>API to collect files from a given directory using several
include/exclude rules.</description>
- <prerequisites>
- <maven>2.0.6</maven>
- </prerequisites>
-
<contributors>
<contributor>
<name>Joakim Erdfelt</name>
@@ -42,36 +41,15 @@
</contributor>
</contributors>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.modello</groupId>
- <artifactId>modello-maven-plugin</artifactId>
- <version>1.0-alpha-17</version>
- <executions>
- <execution>
- <id>fileset</id>
- <goals>
- <goal>xpp3-reader</goal>
- <goal>xpp3-writer</goal>
- <goal>java</goal>
- <goal>xsd</goal>
- </goals>
- <configuration>
- <model>src/main/mdo/fileset.mdo</model>
- </configuration>
- </execution>
- </executions>
- <configuration>
- <version>1.1.0</version>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.3</version>
- </plugin>
- </plugins>
- </build>
+ <prerequisites>
+ <maven>2.0.6</maven>
+ </prerequisites>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/shared/trunk/file-management</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/shared/trunk/file-management</developerConnection>
+ <url>http://svn.apache.org/viewvc/maven/shared/trunk/file-management</url>
+ </scm>
<dependencies>
<!-- Maven -->
@@ -107,9 +85,34 @@
</dependency>
</dependencies>
- <scm>
-
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/shared/trunk/file-management</connection>
-
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/shared/trunk/file-management</developerConnection>
- <url>http://svn.apache.org/viewvc/maven/shared/trunk/file-management</url>
- </scm>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.modello</groupId>
+ <artifactId>modello-maven-plugin</artifactId>
+ <version>1.0-alpha-17</version>
+ <executions>
+ <execution>
+ <id>fileset</id>
+ <goals>
+ <goal>xpp3-reader</goal>
+ <goal>xpp3-writer</goal>
+ <goal>java</goal>
+ <goal>xsd</goal>
+ </goals>
+ <configuration>
+ <model>src/main/mdo/fileset.mdo</model>
+ </configuration>
+ </execution>
+ </executions>
+ <configuration>
+ <version>1.1.0</version>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>2.3</version>
+ </plugin>
+ </plugins>
+ </build>
</project>