permazen-ant
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.permazen</groupId> <artifactId>permazen-ant</artifactId> <version>4.1.2</version> </dependency>
<?xml version="1.0"?> <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> <groupId>io.permazen</groupId> <artifactId>permazen</artifactId> <version>4.1.2</version> </parent> <artifactId>permazen-ant</artifactId> <name>Permazen Ant Tasks</name> <description>Ant tasks for use with Permazen.</description> <distributionManagement> <site> <id>${project.artifactId}-site</id> <url>file://${project.basedir}/../site/${project.artifactId}/</url> </site> </distributionManagement> <dependencies> <!-- Siblings --> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-main</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-kv</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-coreapi</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>${project.parent.artifactId}-spring</artifactId> <version>${project.version}</version> </dependency> <!-- Ant --> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>${ant.version}</version> </dependency> </dependencies> </project>