summaryrefslogtreecommitdiffstats
path: root/maven
diff options
context:
space:
mode:
authorMark Raynsford <[email protected]>2012-11-15 22:23:45 +0000
committerMark Raynsford <[email protected]>2012-11-15 22:23:45 +0000
commit6002576df94af082f031252867891eba92a8c4ab (patch)
tree0a3a4edf8c89547918dd89715bcf6bc91bf5c3c1 /maven
parenta58a9f8894612a10bcb03952687f8d9355af943c (diff)
Removed JOAL example (moved to JOAL demos)
Diffstat (limited to 'maven')
-rw-r--r--maven/trivial-joal/README.txt3
-rw-r--r--maven/trivial-joal/pom.xml50
-rw-r--r--maven/trivial-joal/src/test/java/com/io7m/example/test_joal/TestJOAL.java22
3 files changed, 0 insertions, 75 deletions
diff --git a/maven/trivial-joal/README.txt b/maven/trivial-joal/README.txt
deleted file mode 100644
index 24f966a..0000000
--- a/maven/trivial-joal/README.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-Trivial example that does nothing beyond opening an AL context. This
-should be sufficient to test package dependency resolution and whether
-or not the binaries actually work.
diff --git a/maven/trivial-joal/pom.xml b/maven/trivial-joal/pom.xml
deleted file mode 100644
index abc2308..0000000
--- a/maven/trivial-joal/pom.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-<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>trivial-joal</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-rc11</version>
- </dependency>
- <dependency>
- <groupId>org.jogamp.joal</groupId>
- <artifactId>joal-main</artifactId>
- <version>2.0-rc11</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>
diff --git a/maven/trivial-joal/src/test/java/com/io7m/example/test_joal/TestJOAL.java b/maven/trivial-joal/src/test/java/com/io7m/example/test_joal/TestJOAL.java
deleted file mode 100644
index a3f4efb..0000000
--- a/maven/trivial-joal/src/test/java/com/io7m/example/test_joal/TestJOAL.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package com.io7m.example.test_joal;
-
-import org.junit.Test;
-
-import com.jogamp.openal.AL;
-import com.jogamp.openal.ALException;
-import com.jogamp.openal.ALFactory;
-
-public class TestJOAL
-{
- @SuppressWarnings("static-method") @Test public void go()
- {
- try {
- final AL al = ALFactory.getAL();
- al.alGetError();
- System.err.println("AL: " + al);
- } catch (final ALException e) {
- e.printStackTrace();
- System.exit(1);
- }
- }
-}