apache-ant
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.dita-ot</groupId>
<artifactId>apache-ant</artifactId>
<version>1.9.2</version>
</dependency><?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>com.github.dita-ot</groupId> <artifactId>apache-ant</artifactId> <version>1.9.2</version> <packaging>zip</packaging> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <url>http://dita-ot.github.com/</url> <name>Apache ANT</name> <description>Apache ANT for use by DITA-OT</description> <inceptionYear>2013</inceptionYear> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>Cp1252</project.build.sourceEncoding> </properties> <scm> <connection>http://svn.apache.org/repos/asf/ant/[project]/trunk</connection> </scm> <build> <plugins> <plugin> <groupId>com.googlecode.maven-download-plugin</groupId> <artifactId>maven-download-plugin</artifactId> <version>1.1.0</version> <executions> <execution> <id>install-ant</id> <phase>initialize</phase> <goals> <goal>wget</goal> </goals> <configuration> <url>http://apache.openmirror.de/ant/binaries/apache-ant-1.9.2-bin.zip</url> <md5>7b6bb6b7caa645dc752ff22d81d2e608</md5> <sha1>97b809ae3227d0bec2c250db8f39b9be04d40c3d</sha1> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>