Published on
Maven Central Java3D can be imported into Mavenised projects with these dependencies in the pom.xml
<dependencies>
...
<dependency>
<groupId>org.jogamp.java3d</groupId>
<artifactId>java3d-core</artifactId>
<version>1.7.2</version>
</dependency>
<dependency>
<groupId>org.jogamp.java3d</groupId>
<artifactId>java3d-utils</artifactId>
<version>1.7.2</version>
</dependency>
...
</dependencies>
or for gradle in the build.gradle file
dependencies {
implementation 'org.jogamp.java3d:java3d-core:1.7.2'
implementation 'org.jogamp.java3d:java3d-utils:1.7.2'
}
It will import
Jogl-2.6.0 as a transitive dependency
As mentioned
here Java3D-Android is also on Maven Central
dependencies {
implementation 'org.jogamp.java3d:java3d-core-and:1.7.2'
implementation 'org.jogamp.java3d:java3d-utils-and:1.7.2'
}
Java3D 1.7.2 differs very little from
1.7.1 apart from small changes to ensure it runs on later JRE versions
The release notes can be viewed
hereWith thanks to Sven for all his work and his recent publishing of Jogl to maven central