diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 49 |
1 files changed, 36 insertions, 13 deletions
@@ -1,12 +1,13 @@ + <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>com.jogamp</groupId> - <artifactId>HungryHarry</artifactId> - <packaging>jar</packaging> - <version>1.0-SNAPSHOT</version> - <name>HungryHarry</name> - <url>http://maven.apache.org</url> + <modelVersion>4.0.0</modelVersion> + <groupId>com.jogamp.hungryharry</groupId> + <artifactId>HungryHarry</artifactId> + <packaging>jar</packaging> + <version>SNAPSHOT</version> + <name>HungryHarry</name> + <url>http://maven.apache.org</url> <build> <plugins> <plugin> @@ -18,15 +19,37 @@ <showDeprecation>true</showDeprecation> </configuration> </plugin> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <descriptorRefs> + <descriptorRef>jar-with-dependencies</descriptorRef> + </descriptorRefs> + <archive> + <manifest> + <mainClass>com.jogamp.hungryharry.FeedAggregator</mainClass> + </manifest> + </archive> + </configuration> + <executions> + <execution> + <id>make-my-jar-with-dependencies</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <version>4.8.1</version> - <scope>test</scope> - </dependency> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.8.1</version> + <scope>test</scope> + </dependency> <dependency> <groupId>net.java.dev.rome</groupId> <artifactId>rome</artifactId> |