git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@466627 13f79535-47bb-0310-9956-ffa450edef68master
| @@ -0,0 +1,28 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-antlr</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>antlr specific task. | |||
| The implementation forks a java process, therefore the antlr jar file is only needed at runtime</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <optional>true</optional> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <!-- add a dependency with antlr 2.7.2 consistent with libraries.properties antlr 2.7.6 is also available on ibiblio--> | |||
| <groupId>antlr</groupId> | |||
| <artifactId>antlr</artifactId> | |||
| <version>2.7.2</version> | |||
| <optional>true</optional> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,23 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-apache-bcel</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>bcel</groupId> | |||
| <artifactId>bcel</artifactId> | |||
| <version>5.1</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,23 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-apache-bsf</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>bsf</groupId> | |||
| <artifactId>bsf</artifactId> | |||
| <version>2.4.0</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,8 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-apache-log4j</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| </project> | |||
| @@ -0,0 +1,23 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-apache-oro</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>oro</groupId> | |||
| <artifactId>oro</artifactId> | |||
| <version>2.0.8</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,22 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-apache-regexp</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>regexp</groupId> | |||
| <artifactId>regexp</artifactId> | |||
| <version>1.3</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,22 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-apache-resolver</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>xml-resolver</groupId> | |||
| <artifactId>xml-resolver</artifactId> | |||
| <version>1.1</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,29 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-commons-logging</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>Ant Listener based on commons-logging</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>commons-logging</groupId> | |||
| <artifactId>commons-logging-api</artifactId> | |||
| <version>1.0.4</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>commons-logging</groupId> | |||
| <artifactId>commons-logging</artifactId> | |||
| <version>1.0.4</version> | |||
| <scope>runtime</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,23 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-commons-net</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>ftp, rexec and telnet tasks</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>commons-net</groupId> | |||
| <artifactId>commons-net</artifactId> | |||
| <version>1.4.0</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,33 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-jai</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>image task and corresponding types. | |||
| jai (Java Advanced Imaging) is not available in public Maven repositories, therefore the dependencies are included with a scope provided | |||
| the download URL is http://java.sun.com/products/java-media/jai/ | |||
| </description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>javax.media</groupId> | |||
| <artifactId>jai-core</artifactId> | |||
| <version>1.1.2_01</version> | |||
| <scope>provided</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>jai</groupId> | |||
| <artifactId>jai-codec</artifactId> | |||
| <version>1.1.2.1</version> | |||
| <scope>provided</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,31 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-javamail</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>implementation of the mail task based on javamail. | |||
| Required to send emails to SMTP servers using user/password combinations | |||
| or to send mail over SSL</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>javax.mail</groupId> | |||
| <artifactId>mail</artifactId> | |||
| <version>1.4</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>javax.activation</groupId> | |||
| <artifactId>activation</artifactId> | |||
| <version>1.1</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,25 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-jdepend</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <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> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>jdepend</groupId> | |||
| <artifactId>jdepend</artifactId> | |||
| <version>2.7</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,24 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-jmf</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>contains the sound task and a soundplayer listener | |||
| download the dependency from http://java.sun.com/products/java-media/jmf/</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>javax.media</groupId> | |||
| <artifactId>jmf</artifactId> | |||
| <version>2.1.1e</version> | |||
| <scope>provided</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,24 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-jsch</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>contains the sshexec and scp tasks | |||
| jsch 0.1.29 might not be available from maven</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>com.jcraft</groupId> | |||
| <artifactId>jsch</artifactId> | |||
| <version>0.1.29</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,23 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-junit</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>contains the junit and junirreport tasks</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>junit</groupId> | |||
| <artifactId>junit</artifactId> | |||
| <version>3.8.2</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,8 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-launcher</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| </project> | |||
| @@ -0,0 +1,24 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-netrexx</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>NetRexxC task | |||
| dependency can be downloaded from http://www.ibm.com/software/awdtools/netrexx/download.html</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>com.ibm.netrexx</groupId> | |||
| <artifactId>netrexx</artifactId> | |||
| <version>2.0.5</version> | |||
| <scope>provided</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,39 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-nodeps</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>contains all the optional tasks and types which do not have particular dependencies</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <!-- 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 | |||
| xercesImpl.jar is provided with ant --> | |||
| <groupId>xerces</groupId> | |||
| <artifactId>xerces-impl</artifactId> | |||
| <version>2.8.1</version> | |||
| <optional>true</optional> | |||
| <scope>runtime</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <!-- xml-apis contains the org.w3c.dom package | |||
| since ant is using DOM APIS to parse the XML build file and do other XML related activities | |||
| xml-apis is a compile time dependency | |||
| a version of xml-apis.jar is delivered with ant --> | |||
| <groupId>xml-apis</groupId> | |||
| <artifactId>xml-apis</artifactId> | |||
| <version>2.8.1</version> | |||
| <optional>true</optional> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,23 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-starteam</artifactId> | |||
| <description>Starteam SDK tasks</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>com.starteam</groupId> | |||
| <artifactId>starteam-sdk</artifactId> | |||
| <version>5.2</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,24 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-stylebook</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>executes the Apache Stylebook document generator. Deprecated since Ant 1.7</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>stylebook</groupId> | |||
| <artifactId>stylebook</artifactId> | |||
| <version>1.0-b2</version> | |||
| <scope>provided</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,24 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-swing</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>a listener and a splash task based on Swing</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>javax.swing</groupId> | |||
| <artifactId>swing</artifactId> | |||
| <version>1.2</version> | |||
| <scope>provided</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,47 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-trax</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>contains particularly one class necessary for the execution of the xslt task</description> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <!-- 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 | |||
| xercesImpl.jar is provided with ant --> | |||
| <groupId>xerces</groupId> | |||
| <artifactId>xerces-impl</artifactId> | |||
| <version>2.8.1</version> | |||
| <optional>true</optional> | |||
| <scope>runtime</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <!-- xml-apis contains the org.w3c.dom package | |||
| since ant is using DOM APIS to parse the XML build file and do other XML related activities | |||
| xml-apis is a compile time dependency | |||
| a version of xml-apis.jar is delivered with ant --> | |||
| <groupId>xml-apis</groupId> | |||
| <artifactId>xml-apis</artifactId> | |||
| <version>2.8.1</version> | |||
| <optional>true</optional> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <!-- xalan contains a TRAX compliant implementation --> | |||
| <groupId>xalan</groupId> | |||
| <artifactId>xalan</artifactId> | |||
| <version>2.7.0</version> | |||
| <optional>true</optional> | |||
| <scope>runtime</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,23 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-weblogic</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <dependencies> | |||
| <dependency> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <groupId>com.bea</groupId> | |||
| <artifactId>weblogic</artifactId> | |||
| <version>5.1</version> | |||
| <scope>provided</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||
| @@ -0,0 +1,43 @@ | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <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> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <description>ant.jar contains the ant framework, except a few classes which are in ant-launcher | |||
| it also contains the implementation and API of the core tasks and types. | |||
| </description> | |||
| <dependencies> | |||
| <dependency> | |||
| <!-- 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 | |||
| xercesImpl.jar is provided with ant --> | |||
| <groupId>ant</groupId> | |||
| <artifactId>ant-launcher</artifactId> | |||
| <version>1.7.0-SNAPSHOT</version> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <!-- 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 | |||
| xercesImpl.jar is provided with ant --> | |||
| <groupId>xerces</groupId> | |||
| <artifactId>xerces-impl</artifactId> | |||
| <version>2.8.1</version> | |||
| <optional>true</optional> | |||
| <scope>runtime</scope> | |||
| </dependency> | |||
| <dependency> | |||
| <!-- xml-apis contains the org.w3c.dom package | |||
| since ant is using DOM APIS to parse the XML build file and do other XML related activities | |||
| xml-apis is a compile time dependency | |||
| a version of xml-apis.jar is delivered with ant --> | |||
| <groupId>xml-apis</groupId> | |||
| <artifactId>xml-apis</artifactId> | |||
| <version>2.8.1</version> | |||
| <optional>true</optional> | |||
| <scope>compile</scope> | |||
| </dependency> | |||
| </dependencies> | |||
| </project> | |||