diff options
author | neothemachine <[email protected]> | 2013-02-13 21:32:52 +0100 |
---|---|---|
committer | neothemachine <[email protected]> | 2013-02-13 21:32:52 +0100 |
commit | b79943c371c60434ca78b57677bcba7cd98a4e00 (patch) | |
tree | 2d711bd9857d6bd432a55f29038574d85d327d50 /ardor3d-distribution/pom.xml | |
parent | 770fbc9f7660221b9a0f349e0c840c284157075b (diff) |
added new distribution module which builds zips with all deps
also, simplified assembly exclusion filter in examples project
Diffstat (limited to 'ardor3d-distribution/pom.xml')
-rw-r--r-- | ardor3d-distribution/pom.xml | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/ardor3d-distribution/pom.xml b/ardor3d-distribution/pom.xml new file mode 100644 index 0000000..7429808 --- /dev/null +++ b/ardor3d-distribution/pom.xml @@ -0,0 +1,61 @@ +<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> + <parent> + <groupId>com.ardor3d</groupId> + <artifactId>ardor3d</artifactId> + <version>0.9-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>distribution</artifactId> + <packaging>pom</packaging> + <name>Distribution</name> + + <dependencies> + <!-- NOTE: This dependency is only required to sort this project to the + end of the line in the multimodule build. --> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ardor3d-examples</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <version>2.4</version> + <executions> + <execution> + <id>distro-assembly</id> + <phase>package</phase> + <goals> + <goal>single</goal> + </goals> + <configuration> + <descriptors> + <descriptor>assembly-jogl.xml</descriptor> + <descriptor>assembly-lwjgl.xml</descriptor> + </descriptors> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>com.googlecode.mavennatives</groupId> + <artifactId>maven-nativedependencies-plugin</artifactId> + <version>0.0.7</version> + <executions> + <execution> + <id>unpacknatives</id> + <goals> + <goal>copy</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> |