Re: Release 2.4.0 Progress ..
Posted by
Sven Gothel on
Jan 24, 2023; 4:02pm
URL: https://forum.jogamp.org/Release-2-4-0-Progress-tp4042061p4042111.html
Note, I am not a maven expert ;)
So I just fixed the maven deployment (was broken minutes earlier).
For my old test project, I changes the pom.xml to contain:
..
<dependencies>
..
<dependency>
<groupId>org.jogamp.gluegen</groupId>
<artifactId>gluegen-rt-main</artifactId>
<version>2.4.0-rc-20230123</version>
</dependency>
<dependency>
<groupId>org.jogamp.jogl</groupId>
<artifactId>jogl-all-main</artifactId>
<version>2.4.0-rc-20230123</version>
</dependency>
<dependencies>
...
<repositories>
<repository>
<id>jogamp-remote</id>
<name>jogamp mirror</name>
<url>
http://www.jogamp.org/deployment/maven/</url>
</repository>
</repositories>
..
Then did a 'mvn install -U',
the '-U' somewhat was required to force an update (?).
This finally could download the bits from our server via maven.
I guess I will update the project so it works as a test (currently not compile clean).