sentinel-ant-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.nocrala.tools.database.sentinel</groupId> <artifactId>sentinel-ant-plugin</artifactId> <version>1.1.9</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> <artifactId>sentinel-ant-plugin</artifactId> <packaging>jar</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> </properties> <parent> <groupId>org.nocrala.tools.database.sentinel</groupId> <artifactId>sentinel-project</artifactId> <version>1.1.9</version> </parent> <dependencies> <!-- Sentinel Abstract Plugin --> <dependency> <groupId>org.nocrala.tools.database.sentinel</groupId> <artifactId>sentinel-abstract-plugin</artifactId> <version>${project.version}</version> </dependency> <!-- Apache Ant 10 dependency for Ant tasks --> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.10.7</version> <scope>provided</scope> </dependency> <!-- Unit Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Assemble jar with dependencies --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.2.0</version><!--$NO-MVN-MAN-VER$--> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifestEntries> <Multi-Release>true</Multi-Release> </manifestEntries> </archive> </configuration> <executions> <execution> <id>make-assembly</id> <!-- this is used for inheritance merges --> <phase>package</phase> <!-- bind to the packaging phase --> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>