<div><div dir="auto">Can I use ant/java from iPhone?  X3dedit?</div></div><div dir="auto"><br></div><div dir="auto">John</div><div><br><div class="gmail_quote"><div dir="ltr">On Tue, Sep 25, 2018 at 1:33 PM Brutzman, Donald (Don) (CIV) <<a href="mailto:brutzman@nps.edu">brutzman@nps.edu</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I've upgraded to Ant 1.5.  Shouldn't be an issue here, but it is good to stay consistent during co-development when possible.<br>
<br>
        Apache Ant<br>
        <a href="https://ant.apache.org" rel="noreferrer" target="_blank">https://ant.apache.org</a><br>
<br>
        Savage Developers Guide: Ant<br>
        <a href="https://savage.nps.edu/Savage/developers.html#Ant" rel="noreferrer" target="_blank">https://savage.nps.edu/Savage/developers.html#Ant</a><br>
<br>
See stylesheets/build.xml target name="create.X3DJSAIL.jars" for how the jar is constructed, excerpt follows.<br>
<br>
Is something that you expected now missing or dropped?  Generally, if it isn't found in version control, nor retrieved by one of the "get" targets, then it is an omission we need to fix.<br>
<br>
The intended goal is to make this library creation thoroughly repeatable, WORKSFORME only gets us part of the way there.  Thanks for your efforts John.<br>
<br>
<br>
     <target name="create.X3DJSAIL.jars" depends="" description="Build X3DJSAIL jars" ><br>
         <!-- TODO jar files for each X3D version --><br>
                <!-- <a href="https://dzone.com/articles/what-is-jar-hell" rel="noreferrer" target="_blank">https://dzone.com/articles/what-is-jar-hell</a> --><br>
                        <!-- <a href="http://docs.oracle.com/javase/8/docs/technotes/guides/deploy/toc.html" rel="noreferrer" target="_blank">http://docs.oracle.com/javase/8/docs/technotes/guides/deploy/toc.html</a> --><br>
                        <echo message="preparing .jar files"/><br>
                        <mkdir dir="${java.jars.dir}"/><br>
                <!-- ===================================================================== --><br>
                <echo message="${<a href="http://jsai.classes.archive.jar.name" rel="noreferrer" target="_blank">jsai.classes.archive.jar.name</a>} contains only compiled .class files and dependency jars"/><br>
                <jar destfile="${<a href="http://jsai.classes.archive.jar.name" rel="noreferrer" target="_blank">jsai.classes.archive.jar.name</a>}"><br>
             <!-- <a href="http://docs.oracle.com/javase/8/docs/technotes/guides/deploy/manifest.html" rel="noreferrer" target="_blank">http://docs.oracle.com/javase/8/docs/technotes/guides/deploy/manifest.html</a> --><br>
             <manifest id="ClassesJarManifest"><br>
               <!-- Who is building this jar? --><br>
               <attribute name="Built-By" value="${<a href="http://user.name" rel="noreferrer" target="_blank">user.name</a>}"/><br>
               <!-- Information about the program itself --><br>
               <attribute name="Implementation-Vendor" value="Web3D Consortium <a href="http://www.web3D.org" rel="noreferrer" target="_blank">http://www.web3D.org</a>"/><br>
               <attribute name="Implementation-Title" value="X3DJSAIL"/><br>
               <attribute name="Implementation-Version" value="1.0"/><br>
               <attribute name="Main-Class" value="org.web3d.x3d.jsail.CommandLine"/><br>
               <attribute name="Sealed" value="true"/><br>
             </manifest><br>
             <fileset dir="${X3DJSAIL.relative.dir}"><br>
                 <include name="*.txt"/><br>
                 <include name="*.html"/><br>
                 <exclude name="build/**/*"/><!-- TODO mysteriously caused by HelloWorldProgram.java testing --><br>
             </fileset><br>
             <fileset dir="${java.classes.dir}"><br>
                 <include name="**/*.class"/><br>
                 <!-- avoid test cases to facilitate test debugging<br>
                 <exclude name="**/tests/**/*.class"/> --><br>
                 <exclude name="javadoc.redirect.html"/><br>
                 <exclude name="jars"/><br>
                 <exclude name="jars/*.jar"/><br>
             </fileset><br>
             <!-- lib, stylesheets --><br>
             <fileset dir="${java.lib.dir}"><br>
                 <include name="**/*"/><br>
                 <include name="**/*.xslt"/><br>
                 <!-- Note that no external-dependency jar files are included in this stripped-down jar --><br>
             </fileset><br>
         </jar><br>
                <!-- ===================================================================== --><br>
         <echo>(ensure that destination ${<a href="http://jsai.classes.archive.jar.name" rel="noreferrer" target="_blank">jsai.classes.archive.jar.name</a>} is not already in use) </echo><br>
         <move file="${<a href="http://jsai.classes.archive.jar.name" rel="noreferrer" target="_blank">jsai.classes.archive.jar.name</a>}"     todir="${java.jars.dir}" verbose="true"/><br>
         <length property="jsai.classes.archive.jar.length" file="${java.jars.dir}/${<a href="http://jsai.classes.archive.jar.name" rel="noreferrer" target="_blank">jsai.classes.archive.jar.name</a>}"/><br>
         <echo>Build .jar complete: ${<a href="http://jsai.classes.archive.jar.name" rel="noreferrer" target="_blank">jsai.classes.archive.jar.name</a>} for Java SAI .class interfaces only (${jsai.classes.archive.jar.length} bytes) </echo><br>
         <!-- ===================================================================== --><br>
         <echo message="${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>} contains all compiled .class files, all source .java files, and javadoc documentation"/><br>
         <echo message="${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>} is a 'fat jar' that can be run independently on command line or elsewehere"/><br>
         <!-- <a href="https://stackoverflow.com/questions/19150811/what-is-a-fat-jar" rel="noreferrer" target="_blank">https://stackoverflow.com/questions/19150811/what-is-a-fat-jar</a> --><br>
         <jar destfile="${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}.withSignatures"><br>
             <manifest id="FullJarManifest"><br>
               <!-- If this is an Applet or Web Start application, include<br>
                    the proper attributes from <a href="http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/index.html" rel="noreferrer" target="_blank">http://docs.oracle.com/javase/7/docs/technotes/guides/jweb/index.html</a><br>
               <attribute name="Permissions" value="sandbox"/><br>
               <attribute name="Codebase" value="<a href="http://example.com" rel="noreferrer" target="_blank">example.com</a>"/> --><br>
               <!-- Who is building this jar? --><br>
               <attribute name="Built-By" value="${<a href="http://user.name" rel="noreferrer" target="_blank">user.name</a>}"/><br>
               <!-- Information about the program itself --><br>
               <attribute name="Implementation-Vendor" value="Web3D Consortium <a href="http://www.web3D.org" rel="noreferrer" target="_blank">http://www.web3D.org</a>"/><br>
               <attribute name="Implementation-Title" value="X3DJSAIL Full"/><br>
               <attribute name="Implementation-Version" value="1.0"/><br>
               <attribute name="Sealed" value="true"/><br>
               <attribute name="Main-Class" value="org.web3d.x3d.jsail.CommandLine"/><br>
               <!-- <a href="https://dzone.com/articles/what-is-jar-hell" rel="noreferrer" target="_blank">https://dzone.com/articles/what-is-jar-hell</a><br>
                    <a href="http://docs.oracle.com/javase/tutorial/deployment/jar/downman.html" rel="noreferrer" target="_blank">http://docs.oracle.com/javase/tutorial/deployment/jar/downman.html</a><br>
                    "Note: The Class-Path header points to classes or JAR files on the local network,<br>
                     not JAR files within the JAR file or classes accessible over Internet protocols.<br>
                     To load classes in JAR files within a JAR file into the class path, you must write custom code to load those classes."<br>
                     So one or more Class-Path entries won't provide general portability:<br>
               <attribute name="Class-Path" value="./${saxon.jar};./${openexi-nagasena.jar};./${exificient.jar}"/><br>
                --><br>
             </manifest><br>
             <!-- everything --><br>
             <fileset dir="${X3DJSAIL.relative.dir}"><br>
                 <include name="*.txt"/><br>
                 <include name="*.html"/><br>
                 <include name="draftJavaLanguageBindingAnnexes/**/*"/><br>
                 <include name="examples/**/*"/><br>
                 <include name="images/**/*"/><br>
                 <include name="javadoc/**/*"/><br>
                 <include name="references/**/*"/><br>
                 <include name="src/**/*"/><br>
                 <exclude name="**/~*"/><br>
                 <exclude name="**/*.bak"/><br>
                 <exclude name="**/private/**"/><br>
                 <exclude name="examples/images/HelloWorldProgramOutput/**"/><br>
                 <exclude name="build/**/*"/><!-- TODO mysteriously caused by HelloWorldProgram.java testing --><br>
             </fileset><br>
             <fileset dir="${java.classes.dir}"><br>
                 <include name="**/*.class"/><br>
                 <exclude name="**/tests/**/*.class"/><br>
                 <exclude name="javadoc.redirect.html"/><br>
                 <exclude name="jars"/><br>
                 <exclude name="jars/*.jar"/><br>
             </fileset><br>
             <!-- lib, stylesheets --><br>
             <fileset dir="${java.lib.dir}"><br>
                 <include name="**/*"/><br>
                 <include name="**/*.xslt"/><br>
                 <exclude name="${saxon.jar}"/><br>
                 <exclude name="${openexi-nagasena.jar}"/><br>
                 <exclude name="${exificient.jar}"/><br>
             </fileset><br>
             <fileset dir="${X3DJSAIL.relative.dir}"><br>
                 <include name="${nashorn.dir}/**/*"/><br>
                 <exclude name="test.bat"/><br>
                 <exclude name="${nashorn.dir}/examples"/><br>
             </fileset><br>
             <zipgroupfileset dir="${java.lib.dir}"><br>
                 <include name="${exificient.jar}"/><br>
                 <include name="${openexi-nagasena.jar}"/><br>
                 <include name="${saxon.jar}"/><br>
                 <!-- apparently unable to avoid inclusion, so removed later<br>
                     <exclude name="META-INF/SAXONICA.DSA"/><br>
                     <exclude name="META-INF/SAXONICA.RSA"/><br>
                     <exclude name="META-INF/SAXONICA.SF"/><br>
                 --><br>
             </zipgroupfileset><br>
         </jar><br>
         <!-- now remove prior signatures, which are no longer valid since other code products have been integrated.<br>
                         to learn more about why removing signatures from integrated "fat" jar files is necessary:<br>
              <a href="https://stackoverflow.com/questions/999489/invalid-signature-file-when-attempting-to-run-a-jar" rel="noreferrer" target="_blank">https://stackoverflow.com/questions/999489/invalid-signature-file-when-attempting-to-run-a-jar</a> --><br>
         <!-- remove signatures from external jars: see "Have you tried using the zipfileset task?"<br>
              <a href="https://stackoverflow.com/questions/2521231/ant-task-to-remove-files-from-a-jar" rel="noreferrer" target="_blank">https://stackoverflow.com/questions/2521231/ant-task-to-remove-files-from-a-jar</a> --><br>
         <!-- zipfileset: <a href="https://ant.apache.org/manual/Tasks/zip.html" rel="noreferrer" target="_blank">https://ant.apache.org/manual/Tasks/zip.html</a> and <a href="https://ant.apache.org/manual/Types/zipfileset.html" rel="noreferrer" target="_blank">https://ant.apache.org/manual/Types/zipfileset.html</a> --><br>
         <jar destfile="${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}"><br>
             <zipfileset src="${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}.withSignatures"><br>
                 <exclude name="META-INF/*.DSA"/><br>
                 <exclude name="META-INF/*.RSA"/><br>
                 <exclude name="META-INF/*.SF"/><br>
             </zipfileset><br>
         </jar><br>
         <delete file="${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}.withSignatures" verbose="true"/><br>
<br>
                <!-- ===================================================================== --><br>
         <echo>(ensure that destination ${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>} is not already in use)</echo><br>
                <move file="${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}"     todir="${java.jars.dir}" verbose="true"/><br>
         <length property="jsai.full.archive.jar.length" file="${java.jars.dir}/${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}"/><br>
         <echo>Build .jar complete: ${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>} for all .class interfaces, .java sources (${jsai.full.archive.jar.length} bytes) </echo><br>
                <!-- TODO also provide option in archive build file to download current version --><br>
                <!-- TODO are exificient and nagasena/openexi needed? --><br>
                <!-- ===================================================================== --><br>
                <echo>Copy ${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>} to lib/ subdirectories in X3D Example Archives:</echo><br>
                <copy file="${java.jars.dir}/${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}" todir="../content/examples/Basic/lib"                  verbose="true"/><br>
        <copy file="${java.jars.dir}/${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}" todir="../content/examples/ConformanceNist/lib"        verbose="true"/><br>
        <copy file="${java.jars.dir}/${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}" todir="../content/examples/Vrml2Sourcebook/lib"        verbose="true"/><br>
        <copy file="${java.jars.dir}/${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}" todir="../content/examples/Savage/lib"                 verbose="true"/><br>
        <copy file="${java.jars.dir}/${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}" todir="../content/examples/SavageDefense/lib"          verbose="true"/><br>
        <copy file="${java.jars.dir}/${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}" todir="../content/examples/X3dForAdvancedModeling/lib" verbose="true"/><br>
        <copy file="${java.jars.dir}/${<a href="http://jsai.full.archive.jar.name" rel="noreferrer" target="_blank">jsai.full.archive.jar.name</a>}" todir="../content/examples/X3dForWebAuthors/lib"       verbose="true"/><br>
     </target><br>
<br>
<br>
On 9/25/2018 9:17 AM, John Carlson wrote:<br>
> $ env |grep ANT<br>
> <br>
> ANT_HOME=/c/Users/coderextreme/apache-ant-1.10.4/<br>
> <br>
> $ !~<br>
> <br>
> ~/apache-ant-1.10.4/bin/ant create.X3DJSAIL.jars<br>
> <br>
> Buildfile: C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\build.xml<br>
> <br>
> create.X3DJSAIL.jars:<br>
> <br>
>       [echo] preparing .jar files<br>
> <br>
>       [echo] X3DJSAIL.3.3.classes.jar contains only compiled .class files and dependency jars<br>
> <br>
>        [jar] Building jar: C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\X3DJSAIL.3.3.classes.jar<br>
> <br>
>       [echo] (ensure that destination X3DJSAIL.3.3.classes.jar is not already in use)<br>
> <br>
>       [move] Moving 1 file to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars<br>
> <br>
>       [move] Attempting to rename: C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\X3DJSAIL.3.3.classes.jar to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars\X3DJSAIL.3.3.classes.jar<br>
> <br>
>       [echo] Build .jar complete: X3DJSAIL.3.3.classes.jar for Java SAI .class interfaces only (12281044 bytes)<br>
> <br>
>       [echo] X3DJSAIL.3.3.full.jar contains all compiled .class files, all source .java files, and javadoc documentation<br>
> <br>
>       [echo] X3DJSAIL.3.3.full.jar is a 'fat jar' that can be run independently on command line or elsewehere<br>
> <br>
>        [jar] Building jar: C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\X3DJSAIL.3.3.full.jar.withSignatures<br>
> <br>
>        [jar] Building jar: C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\X3DJSAIL.3.3.full.jar<br>
> <br>
>     [delete] Deleting: C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\X3DJSAIL.3.3.full.jar.withSignatures<br>
> <br>
>       [echo] (ensure that destination X3DJSAIL.3.3.full.jar is not already in use)<br>
> <br>
>       [move] Moving 1 file to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars<br>
> <br>
>       [move] Attempting to rename: C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\X3DJSAIL.3.3.full.jar to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars\X3DJSAIL.3.3.full.jar<br>
> <br>
>       [echo] Build .jar complete: X3DJSAIL.3.3.full.jar for all .class interfaces, .java sources (20654034 bytes)<br>
> <br>
>       [echo] Copy X3DJSAIL.3.3.full.jar to lib/ subdirectories in X3D Example Archives:<br>
> <br>
>       [copy] Copying 1 file to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\Basic\lib<br>
> <br>
>       [copy] Copying C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars\X3DJSAIL.3.3.full.jar to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\Basic\lib\X3DJSAIL.3.3.full.jar<br>
> <br>
>       [copy] Copying 1 file to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\ConformanceNist\lib<br>
> <br>
>       [copy] Copying C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars\X3DJSAIL.3.3.full.jar to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\ConformanceNist\lib\X3DJSAIL.3.3.full.jar<br>
> <br>
>       [copy] Copying 1 file to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\Vrml2Sourcebook\lib<br>
> <br>
>       [copy] Copying C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars\X3DJSAIL.3.3.full.jar to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\Vrml2Sourcebook\lib\X3DJSAIL.3.3.full.jar<br>
> <br>
>       [copy] Copying 1 file to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\Savage\lib<br>
> <br>
>       [copy] Copying C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars\X3DJSAIL.3.3.full.jar to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\Savage\lib\X3DJSAIL.3.3.full.jar<br>
> <br>
>       [copy] Copying 1 file to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\SavageDefense\lib<br>
> <br>
>       [copy] Copying C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars\X3DJSAIL.3.3.full.jar to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\SavageDefense\lib\X3DJSAIL.3.3.full.jar<br>
> <br>
>       [copy] Copying 1 file to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\X3dForAdvancedModeling\lib<br>
> <br>
>       [copy] Copying C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars\X3DJSAIL.3.3.full.jar to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\X3dForAdvancedModeling\lib\X3DJSAIL.3.3.full.jar<br>
> <br>
>       [copy] Copying 1 file to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\X3dForWebAuthors\lib<br>
> <br>
>       [copy] Copying C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\stylesheets\java\jars\X3DJSAIL.3.3.full.jar to C:\x3d-code\<a href="http://www.web3d.org" rel="noreferrer" target="_blank">www.web3d.org</a>\x3d\content\examples\X3dForWebAuthors\lib\X3DJSAIL.3.3.full.jar<br>
> <br>
> BUILD SUCCESSFUL<br>
> <br>
> Total time: 12 seconds<br>
> <br>
> coderextreme@DESKTOP-DOPK2VD MINGW64 /c/x3d-code/<a href="http://www.web3d.org/x3d/stylesheets" rel="noreferrer" target="_blank">www.web3d.org/x3d/stylesheets</a><br>
> <br>
> $ !jar<br>
> <br>
> jar -tf java/jars/X3DJSAIL.3.3.full.jar |grep auto<br>
> <br>
> .netbeans_automatic_build<br>
> <br>
> coderextreme@DESKTOP-DOPK2VD MINGW64 /c/x3d-code/<a href="http://www.web3d.org/x3d/stylesheets" rel="noreferrer" target="_blank">www.web3d.org/x3d/stylesheets</a><br>
> <br>
> $ jar -tf java/jars/X3DJSAIL.3.3.full.jar |grep nash<br>
> <br>
> coderextreme@DESKTOP-<br>
> <br>
> coderextreme@DESKTOP-DOPK2VD MINGW64 /c/x3d-code/<a href="http://www.web3d.org/x3d/stylesheets" rel="noreferrer" target="_blank">www.web3d.org/x3d/stylesheets</a><br>
> <br>
> $ jar -tf java/jars/X3DJSAIL.3.3.classes.jar |grep nash<br>
> <br>
<br>
<br>
all the best, Don<br>
-- <br>
Don Brutzman  Naval Postgraduate School, Code USW/Br       <a href="mailto:brutzman@nps.edu" target="_blank">brutzman@nps.edu</a><br>
Watkins 270,  MOVES Institute, Monterey CA 93943-5000 USA   +1.831.656.2149<br>
X3D graphics, virtual worlds, navy robotics <a href="http://faculty.nps.edu/brutzman" rel="noreferrer" target="_blank">http://faculty.nps.edu/brutzman</a><br>
<br>
</blockquote></div></div>