hotrod-ant-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hotrodorm.hotrod</groupId> <artifactId>hotrod-ant-plugin</artifactId> <version>4.7.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> <artifactId>hotrod-ant-plugin</artifactId> <packaging>jar</packaging> <name>hotrod-ant-plugin</name> <description>HotRod is an ORM for Java, Spring and SpringBoot.</description> <url>https://github.com/hotrodorm/hotrod</url> <parent> <groupId>org.hotrodorm.hotrod</groupId> <artifactId>hotrod-project</artifactId> <version>4.7.1</version> </parent> <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> <dependencies> <!-- HotRod Abstract Plugin --> <dependency> <groupId>org.hotrodorm.hotrod</groupId> <artifactId>hotrod-abstract-plugin</artifactId> <version>4.7.1</version> </dependency> <!-- Ant 1.10 --> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.10.7</version> <scope>provided</scope> </dependency> <!-- JXL --> <dependency> <groupId>net.sourceforge.jexcelapi</groupId> <artifactId>jxl</artifactId> <version>2.6.12</version> <scope>provided</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>