ant
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>name.dmaus.schxslt</groupId> <artifactId>ant</artifactId> <version>1.10.1</version> </dependency>
<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>name.dmaus.schxslt</groupId> <artifactId>schxslt-parent</artifactId> <version>1.10.1</version> </parent> <artifactId>ant</artifactId> <name>SchXslt Ant</name> <description>Ant task for Schematron validation with SchXslt</description> <url>https://github.com/schxslt/schxslt-ant</url> <scm> <url>https://github.com/schxslt/schxslt-ant</url> <connection>scm:git:https://github.com/schxslt/schxslt-ant.git</connection> </scm> <issueManagement> <url>https://github.com/schxslt/schxslt-ant/issues</url> <system>GitHub Issues</system> </issueManagement> <distributionManagement> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> </repository> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.10.12</version> </dependency> <dependency> <groupId>name.dmaus.schxslt</groupId> <artifactId>java</artifactId> <version>4.0</version> </dependency> <dependency> <groupId>name.dmaus.schxslt</groupId> <artifactId>schxslt</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <finalName>ant-schxslt-${project.version}</finalName> <appendAssemblyId>false</appendAssemblyId> </configuration> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>