diff options
author | neothemachine <[email protected]> | 2012-12-05 19:19:31 +0100 |
---|---|---|
committer | neothemachine <[email protected]> | 2012-12-05 19:19:31 +0100 |
commit | 7ca002eb1d1510767cd524a800710cf3898ba699 (patch) | |
tree | 7b3bd1dec9f58e32d083b287f44569526761bb32 /ardor3d-savable/pom.xml | |
parent | 105f890b5e750aaa5ec63e768e77eca2af8631a4 (diff) | |
parent | 9dd02f103042cb8a196f8a3ed2278da443e345bf (diff) |
Merge branch 'kill_trunk' into dependencies
Diffstat (limited to 'ardor3d-savable/pom.xml')
-rw-r--r-- | ardor3d-savable/pom.xml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/ardor3d-savable/pom.xml b/ardor3d-savable/pom.xml new file mode 100644 index 0000000..d4e6aa8 --- /dev/null +++ b/ardor3d-savable/pom.xml @@ -0,0 +1,33 @@ +<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>../</relativePath>
+ </parent>
+
+ <artifactId>ardor3d-savable</artifactId>
+ <packaging>bundle</packaging>
+ <name>Ardor 3D Savable</name>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ <encoding>${project.build.sourceEncoding}</encoding>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <dependencies>
+ </dependencies>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+</project>
+
|