diff options
author | Renanse <[email protected]> | 2012-10-13 12:58:16 -0500 |
---|---|---|
committer | Renanse <[email protected]> | 2012-10-13 12:58:16 -0500 |
commit | e60afe7110d0d43cdc41f44aa631de19f312ec54 (patch) | |
tree | 99d94490c346b06186ebfbba79500a918b1f9ca1 /trunk/ardor3d-animation/pom.xml | |
parent | 555475f5aa57fb5feffefe30fa9a088341cd6a92 (diff) |
moved to github
Diffstat (limited to 'trunk/ardor3d-animation/pom.xml')
-rw-r--r-- | trunk/ardor3d-animation/pom.xml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/trunk/ardor3d-animation/pom.xml b/trunk/ardor3d-animation/pom.xml new file mode 100644 index 0000000..895cdcb --- /dev/null +++ b/trunk/ardor3d-animation/pom.xml @@ -0,0 +1,32 @@ +<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.8-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> + + <artifactId>ardor3d-animation</artifactId> + <packaging>bundle</packaging> + <name>Ardor 3D Skinning and Animation System</name> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + </plugins> + </build> + <dependencies> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>ardor3d-core</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + </project> |