Login  Register

Re: Java3d 1.6.0-pre3 released

Posted by hharrison on Sep 18, 2012; 7:30am
URL: https://forum.jogamp.org/Java3d-1-6-0-pre3-released-tp4026211p4026214.html

I just pushed out the most stripped-down ant scripts I could with the latest release, if you look on the master branches of the vecmath repo and the j3dcore repo, they are checked in as build2.xml.

Could you perhaps take a look and tell me what changes they need so your jenkins instance can pick them up?

My current setup:

vecmath, j3dcore and j3dutils repos get checked out in subfolders named

vecmath/
j3dcore/
j3dutils/

vecmath needs building first, the target is 'jar' in build2.xml

the build2.xml in the j3dcore repo builds both the core and the tools (leftover from what I inherited) the
one part that will need adjustment is finding the jogl2 and vecmath jars to build against, they are set as:

  <property name="vecmath.lib"       location="../vecmath/build/jars/vecmath.jar"/>
  <property name="jogl.lib"          location="../../jogl-rc10/jogl-all.jar"/>
  <property name="gluegen.lib"       location="../../jogl-rc10/gluegen.jar"/>

The build scripts I just checked in are pretty trivial, but if you have any questions, just ask.

Harvey