I a am trying to use World Wind Java into a Maven project.
First method would be to take their SDK here and all dependencies in build path. But I want to make it more maven compliant.
First dependency: jogl-all.jar. SDK v2.0.0 seems to use v2.1.5 of JOGL (from manifest). Hence I put this in my pom file:
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all</artifactId>
<version>2.1.5</version>
</dependency>
Here is my issue: two jar files are very different in size, and moreover, with JOGL jar from SDK, I can import com.jogamp.opengl.awt.GLCanvas
, while with maven retrieved JAR, I can't.
I don't understand how I can get two different behaviors/JARs while using exact same version.
Any clue? Any other experience using World Wind Java within Maven project?