Login  Register

Maven Support

Posted by John Klehm on Jan 13, 2012; 8:12am
URL: https://forum.jogamp.org/Maven-Support-tp3656039.html

So here's what I understand the status of JOGL Maven support to be:

Options right *now*:

a) Install to the your local machine using command line maven
* https://github.com/reyman/scriptJogamp/blob/master/script-install.sh

b) Use an experimental repo (with a couple manual fixes for windows)

    <dependencies>
        <dependency>
            <groupId>org.jogamp.jogl</groupId>
                <artifactId>jogl.all</artifactId>
                    <version>2.0-b526-20111018</version>   
        </dependency>
        <dependency>
            <groupId>org.jogamp.gluegen</groupId>
                <artifactId>gluegen-rt</artifactId>
                    <version>2.0-b424-20111018</version>
        </dependency>
    </dependencies>

    <repositories>
       
        <repository>
            <id>maven.iscpif.fr</id>
            <name>ISCPIF repository</name>
            <url>http://maven.iscpif.fr/public/</url>
        </repository>
    </repositories>


I've been using the experimental repo for a bit and ran into a couple bugs.  I don't know where I should submit my fixes though and it seems like it should be at jogamp.org.

--John

P.S. Thank again for everyone's work I just want to help make things better.