as discussed on the repository mailing list git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@469506 13f79535-47bb-0310-9956-ffa450edef68master
@@ -32,6 +32,8 @@ | |||||
--> | --> | ||||
<property name="Name" value="Apache Ant"/> | <property name="Name" value="Apache Ant"/> | ||||
<property name="name" value="ant"/> | <property name="name" value="ant"/> | ||||
<!-- this is the groupId of ant in the Maven repository --> | |||||
<property name="groupid" value="org.apache.ant"/> | |||||
<property name="project.version" value="1.7.0Beta3"/> | <property name="project.version" value="1.7.0Beta3"/> | ||||
<!-- pom.version is used when doing a distribution and must match with what is checked in under src/etc/poms --> | <!-- pom.version is used when doing a distribution and must match with what is checked in under src/etc/poms --> | ||||
<property name="pom.version" value="1.7.0-SNAPSHOT"/> | <property name="pom.version" value="1.7.0-SNAPSHOT"/> | ||||
@@ -153,7 +155,7 @@ | |||||
<property name="src.dist.docs" value="${src.dist.dir}/docs"/> | <property name="src.dist.docs" value="${src.dist.dir}/docs"/> | ||||
<property name="src.dist.lib" value="${src.dist.dir}/lib"/> | <property name="src.dist.lib" value="${src.dist.dir}/lib"/> | ||||
<property name="java-repository.dir" value="java-repository/${name}"/> | |||||
<property name="java-repository.dir" value="java-repository/${groupid}"/> | |||||
<property name="java-repository.jars.dir" value="${java-repository.dir}/jars"/> | <property name="java-repository.jars.dir" value="${java-repository.dir}/jars"/> | ||||
<property name="java-repository.poms.dir" value="${java-repository.dir}/poms"/> | <property name="java-repository.poms.dir" value="${java-repository.dir}/poms"/> | ||||
@@ -3,20 +3,20 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-antlr</artifactId> | <artifactId>ant-antlr</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>antlr specific task. | <description>antlr specific task. | ||||
The implementation forks a java process, therefore the antlr jar file is only needed at runtime</description> | The implementation forks a java process, therefore the antlr jar file is only needed at runtime</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<optional>true</optional> | <optional>true</optional> | ||||
@@ -3,18 +3,18 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-apache-bcel</artifactId> | <artifactId>ant-apache-bcel</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,18 +3,18 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-apache-bsf</artifactId> | <artifactId>ant-apache-bsf</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -2,18 +2,18 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-apache-log4j</artifactId> | <artifactId>ant-apache-log4j</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,18 +3,18 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-apache-oro</artifactId> | <artifactId>ant-apache-oro</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -2,18 +2,18 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-apache-regexp</artifactId> | <artifactId>ant-apache-regexp</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -2,18 +2,18 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-apache-resolver</artifactId> | <artifactId>ant-apache-resolver</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -2,19 +2,19 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-commons-logging</artifactId> | <artifactId>ant-commons-logging</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>Ant Listener based on commons-logging</description> | <description>Ant Listener based on commons-logging</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -2,19 +2,19 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-commons-net</artifactId> | <artifactId>ant-commons-net</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>ftp, rexec and telnet tasks</description> | <description>ftp, rexec and telnet tasks</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,13 +3,13 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-jai</artifactId> | <artifactId>ant-jai</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>image task and corresponding types. | <description>image task and corresponding types. | ||||
@@ -18,7 +18,7 @@ | |||||
</description> | </description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -2,13 +2,13 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-javamail</artifactId> | <artifactId>ant-javamail</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>implementation of the mail task based on javamail. | <description>implementation of the mail task based on javamail. | ||||
@@ -16,7 +16,7 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/ma | |||||
or to send mail over SSL</description> | or to send mail over SSL</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,20 +3,20 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-jdepend</artifactId> | <artifactId>ant-jdepend</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>task jdepend invoking the jdepend parser. There is also a version 2.9.1 of the | <description>task jdepend invoking the jdepend parser. There is also a version 2.9.1 of the | ||||
jdepend parser available on the maven repository</description> | jdepend parser available on the maven repository</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -2,20 +2,20 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-jmf</artifactId> | <artifactId>ant-jmf</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>contains the sound task and a soundplayer listener | <description>contains the sound task and a soundplayer listener | ||||
download the dependency from http://java.sun.com/products/java-media/jmf/</description> | download the dependency from http://java.sun.com/products/java-media/jmf/</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -2,20 +2,20 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-jsch</artifactId> | <artifactId>ant-jsch</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>contains the sshexec and scp tasks | <description>contains the sshexec and scp tasks | ||||
jsch 0.1.29 might not be available from maven</description> | jsch 0.1.29 might not be available from maven</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -2,19 +2,19 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-junit</artifactId> | <artifactId>ant-junit</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>contains the junit and junirreport tasks</description> | <description>contains the junit and junirreport tasks</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,13 +3,13 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-launcher</artifactId> | <artifactId>ant-launcher</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<build> | <build> | ||||
@@ -2,20 +2,20 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-netrexx</artifactId> | <artifactId>ant-netrexx</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>NetRexxC task | <description>NetRexxC task | ||||
dependency can be downloaded from http://www.ibm.com/software/awdtools/netrexx/download.html</description> | dependency can be downloaded from http://www.ibm.com/software/awdtools/netrexx/download.html</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,19 +3,19 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-nodeps</artifactId> | <artifactId>ant-nodeps</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>contains all the optional tasks and types which do not have particular dependencies</description> | <description>contains all the optional tasks and types which do not have particular dependencies</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,18 +3,18 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-starteam</artifactId> | <artifactId>ant-starteam</artifactId> | ||||
<description>Starteam SDK tasks</description> | <description>Starteam SDK tasks</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,19 +3,19 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-stylebook</artifactId> | <artifactId>ant-stylebook</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>executes the Apache Stylebook document generator. Deprecated since Ant 1.7</description> | <description>executes the Apache Stylebook document generator. Deprecated since Ant 1.7</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,19 +3,19 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-swing</artifactId> | <artifactId>ant-swing</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>a listener and a splash task based on Swing</description> | <description>a listener and a splash task based on Swing</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,19 +3,19 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-trax</artifactId> | <artifactId>ant-trax</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<description>contains particularly one class necessary for the execution of the xslt task</description> | <description>contains particularly one class necessary for the execution of the xslt task</description> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,18 +3,18 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-weblogic</artifactId> | <artifactId>ant-weblogic</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<dependencies> | <dependencies> | ||||
<dependency> | <dependency> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -3,13 +3,13 @@ | |||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<parent> | <parent> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<relativePath>../pom.xml</relativePath> | <relativePath>../pom.xml</relativePath> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
</parent> | </parent> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant</artifactId> | <artifactId>ant</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<name>org.apache.tools.ant</name> | <name>org.apache.tools.ant</name> | ||||
@@ -19,7 +19,7 @@ | |||||
<!-- the implementation jar of the xerces jar will be used by ant to parse | <!-- the implementation jar of the xerces jar will be used by ant to parse | ||||
XML files, particularly the build files, if the JDK does not provide a parser | XML files, particularly the build files, if the JDK does not provide a parser | ||||
xercesImpl.jar is provided with ant --> | xercesImpl.jar is provided with ant --> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-launcher</artifactId> | <artifactId>ant-launcher</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<scope>compile</scope> | <scope>compile</scope> | ||||
@@ -2,7 +2,7 @@ | |||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | <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"> | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | ||||
<modelVersion>4.0.0</modelVersion> | <modelVersion>4.0.0</modelVersion> | ||||
<groupId>ant</groupId> | |||||
<groupId>org.apache.ant</groupId> | |||||
<artifactId>ant-parent</artifactId> | <artifactId>ant-parent</artifactId> | ||||
<version>1.7.0-SNAPSHOT</version> | <version>1.7.0-SNAPSHOT</version> | ||||
<packaging>pom</packaging> | <packaging>pom</packaging> | ||||