>this is what I found in build.xml:
>
> <target name="appletjars" id="appletjars" depends="check.appletjars"
> unless="appletjars.uptodate">
> <delete file="build/appletjars.timestamp"/>
> <delete dir="${appletjars.dir}"/>
> <mkdir dir="${appletjars.dir}"/>
> <unjar dest="${appletjars.dir}" src="${lib.dir}/
>vecmath1.2-1.14.jar">
No, it's not that.
vecmath is 2 things:
- an external jar which is just uncompressed in the above command.
- a new Java package in Jmol source code with only Point3fi
It's later in build.xml when building all the JmolAppletX.jar files.
Try replacing:
<jar destfile="JmolApplet3.jar" manifest="manifest/applet3.txt" >
<fileset dir="${applet.classes.dir}">
<include name="org/jmol/g3d/**" />
</fileset>
</jar>
By:
<jar destfile="JmolApplet3.jar" manifest="manifest/applet3.txt" >
<fileset dir="${applet.classes.dir}">
<include name="org/jmol/g3d/**" />
<include name="org/jmol/vecmath/**" />
</fileset>
</jar>
> I gather this needs to wait for Miguel to
>address?
Miguel will have to decide in which JmolAppletX.jar file it's best to put
Point3fi.
Nico
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
_______________________________________________
Jmol-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jmol-developers