diff options
author | Curtis Rueden <[email protected]> | 2015-02-23 13:24:25 -0600 |
---|---|---|
committer | Harvey Harrison <[email protected]> | 2015-04-19 19:49:24 -0700 |
commit | 5febbf85c8b9500d957611132af8289a0cd8ba7d (patch) | |
tree | e9cf1b8588ed0cb61060740db53356bc2abc5936 | |
parent | 783fa556a205a2f31df3433a502ba2b85d48dcf5 (diff) |
Fix the remote repository URLs
This fork uses Git+GitHub, not SVN+java.net.
Signed-off-by: Curtis Rueden <[email protected]>
Signed-off-by: Harvey Harrison <[email protected]>
-rw-r--r-- | README-build.html | 17 | ||||
-rw-r--r-- | build.xml | 2 |
2 files changed, 9 insertions, 10 deletions
diff --git a/README-build.html b/README-build.html index c1750f9..9734c16 100644 --- a/README-build.html +++ b/README-build.html @@ -12,26 +12,25 @@ the 3D packages</span></h3> style="font-weight: bold;"></span></span><span style="font-weight: bold; text-decoration: underline;"> </span></p> <p>To -build the 3D packages, you must checkout the following three -svn +build the 3D packages, you must clone the following three repositories:<br> </p> <ul> - <li><a href="http://j3d-core.dev.java.net/">j3d-core</a></li> - <li><a href="http://j3d-core-utils.dev.java.net/">j3d-core-utils</a></li> - <li><a href="http://vecmath.dev.java.net/">vecmath</a></li> + <li><a href="https://github.com/hharrison/java3d-core/">j3d-core</a></li> + <li><a href="https://github.com/hharrison/java3d-utils/">j3d-utils</a></li> + <li><a href="https://github.com/hharrison/vecmath/">vecmath</a></li> </ul> <p>These three top-level directories must be named exactly as shown above and they must be sibling directories. To ensure this, run -the svn checkout command for each of the respositories from the same +the git clone command for each of the respositories from the same parent directory. For example:<br> </p> <ul> <code>cd <j3d-root-dir></code><br> - <code>svn checkout https://vecmath.dev.java.net/svn/vecmath/branches/dev-1_6 vecmath</code><br> - <code>svn checkout https://j3d-core.dev.java.net/svn/j3d-core/branches/dev-1_6 j3d-core</code><br> - <code>svn checkout https://j3d-core-utils.dev.java.net/svn/j3d-core-utils/branches/dev-1_6 j3d-core-utils</code> + <code>git clone git://github.com/hharrison/vecmath</code><br> + <code>git clone git://github.com/hharrison/java3d-core j3d-core</code><br> + <code>git clone git://github.com/hharrison/java3d-utils j3d-utils</code> </ul> <p>NOTE: you must first build the javax.vecmath package before building the javax.media.j3d and com.sun.j3d.* packages. See the <a @@ -7,7 +7,7 @@ <property name="gen.dir" location="${build.dir}/gen"/> <property name="class.dir" location="${build.dir}/classes"/> - <property name="j3dtools.dir" location="../j3dutils"/> + <property name="j3dtools.dir" location="../j3d-utils"/> <property name="j3dtools.src.dir" location="${j3dtools.dir}/src"/> <property name="vecmath.lib" location="../vecmath/build/jars/vecmath.jar"/> |