Re: Release 2.4.0 Progress ..
Posted by
gouessej on
Feb 14, 2023; 12:12pm
URL: https://forum.jogamp.org/Release-2-4-0-Progress-tp4042061p4042177.html
The wiki explains how to use the test repository with Maven:
https://jogamp.org/wiki/index.php?title=Maven#The_jogamp.org_test_repository_(optional)I do this for Gradle:
repositories {
mavenCentral()
maven { url "https://jogamp.org/deployment/maven" }
}
dependencies {
implementation 'org.jogamp.gluegen:gluegen-rt-main:2.4.0'
implementation 'org.jogamp.joal:joal-main:2.4.0'
implementation 'org.jogamp.jogl:jogl-all-main:2.4.0'
}