aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorphil <[email protected]>2016-10-18 14:50:09 +1300
committerphil <[email protected]>2016-10-18 14:50:09 +1300
commitff6527c82eaa7aa6a2e04d528f88f70e75e00265 (patch)
tree1bed8f1ca89a5d213ca00d4d25e8e5208a61ff57 /pom.xml
parent2d74255cddebded4be4b0da1c528aa7b905bbfc6 (diff)
pom.xml corrected
the pom was referring to gluegen-rt and jogl-all rather than gluegen-rt-main and jogl-all-main, without the main the jar files are pulled down but none of the native jars so code will compile but not run.
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 9332aa1..64e1f87 100644
--- a/pom.xml
+++ b/pom.xml
@@ -109,12 +109,12 @@
</dependency>
<dependency>
<groupId>org.jogamp.gluegen</groupId>
- <artifactId>gluegen-rt</artifactId>
+ <artifactId>gluegen-rt-main</artifactId>
<version>${jogamp.version}</version>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
- <artifactId>jogl-all</artifactId>
+ <artifactId>jogl-all-main</artifactId>
<version>${jogamp.version}</version>
</dependency>
</dependencies>