archetype-resources.pom.xml Maven / Gradle / Ivy
<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> <groupId>${groupId}</groupId> <artifactId>${artifactId}</artifactId> <version>${version}</version> <build> <defaultGoal>install</defaultGoal> <plugins> <!-- make an uber jar with all deps --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>org.tomitribe.crest.Main</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> <!-- now make the jar chmod +x style executable --> <plugin> <groupId>org.skife.maven</groupId> <artifactId>really-executable-jar-maven-plugin</artifactId> <version>1.1.0</version> <configuration> <!-- value of flags will be interpolated into the java invocation --> <!-- as "java $flags -jar ..." --> <flags>-Xmx1G</flags> <programFile>${project.artifactId}</programFile> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>really-executable-jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.tomitribe</groupId> <artifactId>tomitribe-crest</artifactId> <version>0.3-SNAPSHOT</version> </dependency> <dependency> <groupId>org.tomitribe</groupId> <artifactId>tomitribe-crest-xbean</artifactId> <version>0.3-SNAPSHOT</version> </dependency> </dependencies> </project>