3D graphics library for Java supporting Maven

Is there any 3D graphics library for Java that supports maven and is in the center of maven (which means that it can be included in the project by simply adding the maven dependency and nothing more)?

I examined the following: none of them can be used with maven without creating for it its own artifact or adding whole pieces of additional hacks to your pom.xml

+4
source share
1 answer

Same answer from Maven and JOGL library?

Jogamp now contains Maven support for jogl components (jocl and joal support expected). Starting with version 2.0-rc11, packages are placed in Maven Central.

Just put this on your pom:

<dependencies> <dependency> <groupId>org.jogamp.gluegen</groupId> <artifactId>gluegen-rt-main</artifactId> <version>2.0-rc11</version> </dependency> <dependency> <groupId>org.jogamp.jogl</groupId> <artifactId>jogl-all-main</artifactId> <version>2.0-rc11</version> </dependency> </dependencies> 

Maven will pull out all the dependencies the next time you try to build a project.

Read more about the wiki here.

+2
source

Source: https://habr.com/ru/post/1394696/


All Articles