diff options
Diffstat (limited to 'ardor3d-math')
-rw-r--r-- | ardor3d-math/pom.xml | 50 |
1 files changed, 13 insertions, 37 deletions
diff --git a/ardor3d-math/pom.xml b/ardor3d-math/pom.xml index 7fe1b23..e57f84c 100644 --- a/ardor3d-math/pom.xml +++ b/ardor3d-math/pom.xml @@ -1,47 +1,23 @@ <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> + <modelVersion>4.0.0</modelVersion> + <parent> + <groupId>com.ardor3d</groupId> + <artifactId>ardor3d</artifactId> + <version>0.9-SNAPSHOT</version> + <relativePath>../pom.xml</relativePath> + </parent> - <artifactId>ardor3d-math</artifactId> - <packaging>bundle</packaging> - <name>Ardor 3D Math</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> + <artifactId>ardor3d-math</artifactId> + <packaging>bundle</packaging> + <name>Ardor 3D Math</name> + <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>ardor3d-savable</artifactId> <version>${project.version}</version> </dependency> - <dependency> - <groupId>org.easymock</groupId> - <artifactId>easymockclassextension</artifactId> - </dependency> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - </dependencies> - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - </properties> + </dependencies> + </project> |