|
I've made some changes and I have got the following jars that I'm using
gluegen-rt
gluegen-rt-natives-linux-amd64
gluegen-rt-natives-windows-amd64
gluegen-rt-natives-windows-i586
j3d-core-1.3.1
jhall
joal
joal-natives-linux-amd64
joal-natives-windows-amd64
joal-natives-windows-i586
jogl-all
jogl-all-natives-linux-amd64
jogl-all-natives-windows-amd64
jogl-all-natives-windows-i586
xj3d.browser_2.1.0-nps
xj3d.cadfilter_2.1.0-nps
xj3d.replica_2.1.0-nps
xj3d-2.1-3rdparty-nps
xj3d-2.1-nps
xj3d-core
xj3d-j3d
xj3d-ogl
xj3d-runtime
xj3d-script-base
And I'm getting the error
run:
C:\Users\matt\AppData\Local\NetBeans\Cache\8.1\executor-snippets\run.xml:48: Problem: failed to create task or type translate-classpath
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.
BUILD FAILED (total time: 0 seconds)
And I'm still using the same Java code and within the run.xml file, I have
<?xml version="1.0" encoding="UTF-8"?>
<project name="{0} (run)" default="run" basedir="."> <target name="run">
<translate-classpath classpath="${classpath}" targetProperty="classpath-translated" /> <property name="run.jvmargs" value="" /> <property name="work.dir" value="${basedir}"/> <property name="application.args" value="" /> <property name="java.failonerror" value="true"/> <java classpath="${classpath-translated}" classname="${classname}" dir="${work.dir}" jvm="${platform.java}" fork="true" failonerror="${java.failonerror}"> <jvmarg value="-Dfile.encoding=${encoding}"/> <redirector inputencoding="${encoding}" outputencoding="${encoding}" errorencoding="${encoding}"/> <jvmarg line="${run.jvmargs}" /> <arg line="${application.args}" /> <syspropertyset> <propertyref prefix="run-sys-prop."/> <mapper from="run-sys-prop.*" to="*" type="glob"/> </syspropertyset> </java> </target> </project>
The error points to the line
<translate-classpath classpath="${classpath}" targetProperty="classpath-translated" />
|