Author: vsiveton
Date: Tue Dec 23 07:28:18 2008
New Revision: 729001

URL: http://svn.apache.org/viewvc?rev=729001&view=rev
Log:
o fixed license header
o using latest parent
o ordering pom

Modified:
    maven/ant-tasks/trunk/pom.xml

Modified: maven/ant-tasks/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/maven/ant-tasks/trunk/pom.xml?rev=729001&r1=729000&r2=729001&view=diff
==============================================================================
--- maven/ant-tasks/trunk/pom.xml (original)
+++ maven/ant-tasks/trunk/pom.xml Tue Dec 23 07:28:18 2008
@@ -1,28 +1,38 @@
 <?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 ~ ~ 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.
-  -->
+
+<!--
+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.
+-->
+
 <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>
+
   <parent>
     <artifactId>maven-parent</artifactId>
     <groupId>org.apache.maven</groupId>
-    <version>9</version>
+    <version>10</version>
   </parent>
-  <modelVersion>4.0.0</modelVersion>
+
   <artifactId>maven-ant-tasks</artifactId>
   <version>2.1-SNAPSHOT</version>
+
   <name>Maven Ant Tasks</name>
+
   <scm>
     
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/ant-tasks/trunk</connection>
     
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/ant-tasks/trunk</developerConnection>
@@ -32,6 +42,72 @@
     <system>jira</system>
     <url>http://jira.codehaus.org/browse/MANTTASKS</url>
   </issueManagement>
+
+  <properties>
+    <mavenVersion>2.1-SNAPSHOT</mavenVersion>
+    <artifactVersion>3.0-SNAPSHOT</artifactVersion>
+    <junitVersion>3.8.1</junitVersion>
+    <plexusVersion>1.0-alpha-48</plexusVersion>
+    <plexusUtilsVersion>1.5.4</plexusUtilsVersion>
+    <wagonVersion>1.0-beta-3</wagonVersion>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>${junitVersion}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-project</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-settings</artifactId>
+      <version>${mavenVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-file</artifactId>
+      <version>${wagonVersion}</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-http-lightweight</artifactId>
+      <version>${wagonVersion}</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>ant</groupId>
+      <artifactId>ant</artifactId>
+      <version>1.6.2</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.artifact</groupId>
+      <artifactId>maven-artifact</artifactId>
+      <version>${artifactVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>${plexusUtilsVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.maven.wagon</groupId>
+      <artifactId>wagon-provider-api</artifactId>
+      <version>${wagonVersion}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-container-default</artifactId>
+      <version>${plexusVersion}</version>
+    </dependency>
+  </dependencies>
+
   <build>
     <pluginManagement>
       <plugins>
@@ -125,69 +201,7 @@
       </plugin>
     </plugins>
   </build>
-  <properties>
-    <mavenVersion>2.1-SNAPSHOT</mavenVersion>
-    <artifactVersion>3.0-SNAPSHOT</artifactVersion>
-    <junitVersion>3.8.1</junitVersion>
-    <plexusVersion>1.0-alpha-48</plexusVersion>
-    <plexusUtilsVersion>1.5.4</plexusUtilsVersion>
-    <wagonVersion>1.0-beta-3</wagonVersion>
-  </properties>
-  <dependencies>
-    <dependency>
-      <groupId>junit</groupId>
-      <artifactId>junit</artifactId>
-      <version>${junitVersion}</version>
-      <scope>test</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-project</artifactId>
-      <version>${mavenVersion}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.maven</groupId>
-      <artifactId>maven-settings</artifactId>
-      <version>${mavenVersion}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.maven.wagon</groupId>
-      <artifactId>wagon-file</artifactId>
-      <version>${wagonVersion}</version>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.maven.wagon</groupId>
-      <artifactId>wagon-http-lightweight</artifactId>
-      <version>${wagonVersion}</version>
-      <scope>runtime</scope>
-    </dependency>
-    <dependency>
-      <groupId>ant</groupId>
-      <artifactId>ant</artifactId>
-      <version>1.6.2</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.maven.artifact</groupId>
-      <artifactId>maven-artifact</artifactId>
-      <version>${artifactVersion}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.codehaus.plexus</groupId>
-      <artifactId>plexus-utils</artifactId>
-      <version>${plexusUtilsVersion}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.maven.wagon</groupId>
-      <artifactId>wagon-provider-api</artifactId>
-      <version>${wagonVersion}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.codehaus.plexus</groupId>
-      <artifactId>plexus-container-default</artifactId>
-      <version>${plexusVersion}</version>
-    </dependency>
-  </dependencies>
+
   <profiles>
     <profile>
       <id>reporting</id>


Reply via email to