diff options
author | Julien Gouesse <[email protected]> | 2019-06-01 16:24:37 +0200 |
---|---|---|
committer | Julien Gouesse <[email protected]> | 2019-06-01 16:24:37 +0200 |
commit | c619ef5e4b6f4f2800985bdc6243036a12e72665 (patch) | |
tree | 8ead49a831d870af54ab9860676e20e39f67a44b /ardor3d-performance | |
parent | 2bc7fecc96a742212162f28460ec25900db84b7d (diff) |
Builds ardor3d-performance with Maven in order to fix the javadoc generation
Diffstat (limited to 'ardor3d-performance')
-rw-r--r-- | ardor3d-performance/pom.xml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/ardor3d-performance/pom.xml b/ardor3d-performance/pom.xml new file mode 100644 index 0000000..d1bf8fb --- /dev/null +++ b/ardor3d-performance/pom.xml @@ -0,0 +1,37 @@ +<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>1.0-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>ardor3d-performance</artifactId> + <packaging>bundle</packaging> + <name>Ardor 3D Performance</name> + + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ardor3d-savable</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ardor3d-math</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ardor3d-core</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>javax.vecmath</groupId> + <artifactId>vecmath</artifactId> + <version>1.5.2</version> + </dependency> + </dependencies> + +</project> |