swat-dp-ant-tools
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.schlagundrahm.swat.datapower.tools.ant</groupId> <artifactId>swat-dp-ant-tools</artifactId> <version>1.2.0</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>ch.schlagundrahm.swat.datapower</groupId> <artifactId>swat-dp-pom</artifactId> <version>1.1.5</version> <relativePath>./swat-dp-pom</relativePath> </parent> <groupId>ch.schlagundrahm.swat.datapower.tools.ant</groupId> <artifactId>swat-dp-ant-tools</artifactId> <version>1.2.0</version> <name>ANT tools for the Swat4DP module</name> <description>DataPower specific ANT tasks for the schlag&rahm WebSphere Administration Toolkit for DataPower (Swat4DP)</description> <scm> <url>https://github.com/schlagundrahm/swat4dp</url> <connection>scm:git:git://github.com/schlagundrahm/swat4dp.git</connection> <developerConnection>scm:git:https://github.com/schlagundrahm/swat4dp.git</developerConnection> <tag>swat-dp-ant-tools-1.2.0</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <java.version>17</java.version> <ant.version>1.10.11</ant.version> </properties> <dependencies> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>${ant.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.5.0</version> </dependency> <dependency> <groupId>de.schlichtherle.truezip</groupId> <artifactId>truezip-file</artifactId> <version>7.7.10</version> <exclusions> <exclusion> <groupId>findbugs</groupId> <artifactId>annotations</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.18.0</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> <version>1.13.1</version> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk18on</artifactId> <version>1.80</version> </dependency> <!-- Test Libraries --> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <version>5.12.2</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.3</version> <configuration> <includes> <include>**/*Test.java</include> </includes> <properties> <!-- <includeTags>fast</includeTags> --> <excludeTags>slow</excludeTags> <!-- <configurationParameters> junit.jupiter.conditions.deactivate = * </configurationParameters> --> </properties> </configuration> </plugin> </plugins> </build> </project>