Maven repo to get 2.4.0-rc ?

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

Maven repo to get 2.4.0-rc ?

Martin
Hi everyone,

I would like to try 2.4.0-rc. Is there a particular Maven repo for candidate releases?

Cheers
Reply | Threaded
Open this post in threaded view
|

Re: Maven repo to get 2.4.0-rc ?

gouessej
Administrator
Hello

As far as I remember, we don't put snapshots into Maven Central but we sometimes put them into our Maven repository here:
https://jogamp.org/deployment/maven/
Julien Gouesse | Personal blog | Website
Reply | Threaded
Open this post in threaded view
|

Re: Maven repo to get 2.4.0-rc ?

Martin
Thank you for your answer Julien.

It seams the latest deployment there is the 2.3.2 version in 2015!

https://jogamp.org/deployment/maven/org/jogamp/jogl/jogl/

I would be more than happy to provide feedback on 2.4.0 rc, but not having a maven repo to pull from is a barrier on my side.

Reply | Threaded
Open this post in threaded view
|

Re: Maven repo to get 2.4.0-rc ?

gouessej
Administrator
It's a barrier on mine too as I use Maven with JogAmp's Ardor3D Continuation but you can compile your project with JOGL 2.3.2 and run it with JOGL 2.4.0 RC.
Julien Gouesse | Personal blog | Website
Reply | Threaded
Open this post in threaded view
|

Re: Maven repo to get 2.4.0-rc ?

Martin
My problem is that I deliver libraries and not applications. My major runtime is the IDE which is using maven.

If you know existing deployment scripts for Maven suitable for such precompiled JOGL RC, I may deploy it on Jzy3d's Maven repo.  
Reply | Threaded
Open this post in threaded view
|

Re: Maven repo to get 2.4.0-rc ?

Martin
Hi,

Digging more in the forum I found those discussion that provide hints on deploying Maven by myself :

http://forum.jogamp.org/Maven-Support-td3656039.html where Reyman provides a scripts to make an experimental repo with https://github.com/reyman/scriptJogamp/blob/master/original/script-install.sh 
http://forum.jogamp.org/Maven-deploy-scripts-td4037537.html#a4037547 where Xerxes mentions scripts here : https://jogamp.org/cgit/jogamp-scripting.git/tree/maven?id=HEAD

I will let you know when/if I can get it working :)

Reply | Threaded
Open this post in threaded view
|

Re: Maven repo to get 2.4.0-rc ?

Martin
Hi,

I have made a partial deployment on my maven server for those interested (only handled Gluegen and JOGL for now).

The script to do so is shared here : https://github.com/jzy3d/jogl-maven-deployer. The way I installed the maven jar makes them all independent, so one has to explicitely declare all native jar as dependencies. See the readme for a dependency list.

I was surprised by the content of https://jogamp.org/deployment/v2.4.0-rc-20210111/jar/. There are lot of gluegen-rt-android-natives-*.jar in addition to gluegen-rt-natives-*.jar in addition to jars named *-mobile- that seam to already address Android (and iOS, really?!).

I can say it works in Jzy3D.

Best