summaryrefslogtreecommitdiffstats
path: root/maven/trivial-test/pom.xml
diff options
context:
space:
mode:
authorMark Raynsford <[email protected]>2012-06-27 20:35:44 +0000
committerMark Raynsford <[email protected]>2012-06-27 20:35:44 +0000
commit2365d7278bc5a64b4ff7856fd01d75214ea0f555 (patch)
tree496738f7120887bc2125e75cf503a9bb2c8e2219 /maven/trivial-test/pom.xml
parent1d1b473d08612d01d274642113ea37a7052daceb (diff)
Added trivial test
Diffstat (limited to 'maven/trivial-test/pom.xml')
-rw-r--r--maven/trivial-test/pom.xml50
1 files changed, 50 insertions, 0 deletions
diff --git a/maven/trivial-test/pom.xml b/maven/trivial-test/pom.xml
new file mode 100644
index 0000000..1300b1c
--- /dev/null
+++ b/maven/trivial-test/pom.xml
@@ -0,0 +1,50 @@
+<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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>com.io7m.example</groupId>
+ <artifactId>jogl-mvn-test</artifactId>
+ <version>1.0.0</version>
+ <packaging>jar</packaging>
+
+ <name>jogl-mvn-test</name>
+ <url>http://maven.apache.org</url>
+
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>4.10</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.jogamp.gluegen</groupId>
+ <artifactId>gluegen-rt-main</artifactId>
+ <version>2.0-rc9</version>
+ </dependency>
+ <dependency>
+ <groupId>org.jogamp.jogl</groupId>
+ <artifactId>jogl-all-main</artifactId>
+ <version>2.0-rc9</version>
+ </dependency>
+ </dependencies>
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>2.0.2</version>
+ <configuration>
+ <source>1.6</source>
+ <target>1.6</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>