diff options
author | phil <[email protected]> | 2016-10-18 14:50:09 +1300 |
---|---|---|
committer | phil <[email protected]> | 2016-10-18 14:50:09 +1300 |
commit | ff6527c82eaa7aa6a2e04d528f88f70e75e00265 (patch) | |
tree | 1bed8f1ca89a5d213ca00d4d25e8e5208a61ff57 /pom.xml | |
parent | 2d74255cddebded4be4b0da1c528aa7b905bbfc6 (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.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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> |