Java3D released on Maven Central

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Java3D released on Maven Central

philjord
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 here

With thanks to Sven for all his work and his recent publishing of Jogl to maven central
Reply | Threaded
Open this post in threaded view
|

Re: Java3D released on Maven Central

Sven Gothel
Administrator
Bravo, congratulations and thank you for your efforts!
Reply | Threaded
Open this post in threaded view
|

Re: Java3D released on Maven Central

Mathieu Féry
In reply to this post by philjord
Congrats !
Reply | Threaded
Open this post in threaded view
|

Re: Java3D released on Maven Central

hharrison
Administrator
In reply to this post by philjord
Congratulations Phil on getting the release published.