Lwjgl link woes

Hi

I’m baffled by a distribution problem.

When our project compiles, we get a dist folder with a jar and a libs subdirectory. When I try to run it from the command line (on linux) I get this:

[java]Exception in thread “main” java.lang.UnsatisfiedLinkError: no lwjgl in java.library.path
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1709)
[/java]

It works fine in JME IDE.

I created a BasicGame to see what that does. The dist folder looks very similar to mine, except one strange thing happens. When you first run the game, lwjgl and opengl shared objects mysteriously appear in the jar’s folder. How? And what have I done wrong to prevent this magically happening in my project?

How are you trying to run it from the command line? That seems like pretty critical information.

Sorry yes, I’m running it as suggested in the readme.

[java]java -jar MyGame.jar[/java]

Which version of JME are you running?

jMonkeyEngine SDK 3.0

I tried using the Linux desktop launcher/bundler too but this suffers the sane problem.

Lwjgl is a ‘native’ library right?

yes, it has a natives package/jar somewhere in jme3, and is extracted from there, so it seems that this package is for some reason not included in your game.

@Empire Phoenix said: yes, it has a natives package/jar somewhere in jme3, and is extracted from there, so it seems that this package is for some reason not included in your game.

Or it’s not being expanded properly.

To OP, which version of JME 3.0? Have you updated to the latest stable (3.0.10 or so)?

I was on 3.0.9 but checked for updates and it pulled in 3.0.10. Restarted app, did a clean and build, but problem persists.

Can you take a look into your build result of there are the lwjgl natives somewhere inside?
(Eg open with 7zip /winrar ect)

Inside MyGame-linux.zip, there is a lib folder with lwjgl.jar in but no .so.

I’ve unzipped the jar file itself, nothing in there.

… but then I don’t see any packaged liblwjgl64.so in the BasicGame - or is it extracted from lwjgl.jar?

Anyway I can make it more verbose during build. I’ve tried ant jar -v. Here’s the bundling stage:

[java] [copylibs] Copy libraries to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-core.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-desktop.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-plugins.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-effects.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-networking.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-jogg.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy j-ogg-oggd.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy j-ogg-vorbisd.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-terrain.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-lwjgl.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-lwjgl-natives.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jinput.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy lwjgl.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-jbullet.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jbullet.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy vecmath.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy stack-alloc.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-niftygui.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy eventbus.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy xmlpull-xpp3.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-networking.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy nifty-default-controls-1.4.0-SNAPSHOT.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy nifty-style-black-1.4.0-SNAPSHOT.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy nifty-1.4.0-SNAPSHOT.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy bsh-2.1.8.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy assets.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Building jar: /workspace/av/trunk/avClient/dist/av.jar
[/java]

And the content of the META-INF/manifest file in the build result might be interesting to see.

This one here would be the interesting one
[copylibs] Copy jME3-lwjgl-natives.jar to /workspace/av/trunk/avClient/dist/lib.
Can you confirm it is there, and contains the natives?

(Also is your workspace directly on the / mount? strange setup ^^)

Sure:

[java]Manifest-Version: 1.0
Ant-Version: Apache Ant 1.8.4
Created-By: 1.7.0_51-b00 (Oracle Corporation)
Class-Path: lib/jME3-core.jar lib/jME3-desktop.jar lib/jME3-plugins.ja
r lib/jME3-effects.jar lib/jME3-networking.jar lib/jME3-jogg.jar lib/
j-ogg-oggd.jar lib/j-ogg-vorbisd.jar lib/jME3-terrain.jar lib/jME3-lw
jgl.jar lib/jME3-lwjgl-natives.jar lib/jinput.jar lib/lwjgl.jar lib/j
ME3-jbullet.jar lib/jbullet.jar lib/vecmath.jar lib/stack-alloc.jar l
ib/jME3-niftygui.jar lib/eventbus.jar lib/xmlpull-xpp3.jar lib/jME3-n
etworking.jar lib/nifty-default-controls-1.4.0-SNAPSHOT.jar lib/nifty
-style-black-1.4.0-SNAPSHOT.jar lib/nifty-1.4.0-SNAPSHOT.jar lib/bsh-
2.1.8.jar lib/assets.jar lib/avClient
X-Comment: Created with jMonkeyPlatform
Main-Class: com.devinelabs.av.Main
[/java]

The dist/lib folder has a jME3-lwjgl-natives.jar, which contains

/native/linux (and other platforms)

which contains:
libjinput-linux.so
libjinput-linux64.so
liblwjgl.so
liblwjgl64.so
libopenal.so
libopenal64.so

Btw, we get this issue on all platforms.

So pspeed was right, the so’s are not getting extracted. What is the mechanism for this?

I can get it to work manually now. I have to copy the *.so files from jME3-lwjgl-natives.jar to the same directory as the main jar, then use:

java -Djava.library.path=. -jar MyGame.jar

It runs!

So it looks like the java.library.path is misconfigured somehow. I’ve grepped for this but there’s no mention of it in the entire project folder (my game or BasicGame) so I am still missing some vital information to fix this.

Thanks

There is a class in je responsible for the extracting (forgot name ^^) Try putting tons of systemouts in it and see what happens.

Maybe you run the sdk with admin privileges for some reason, then the project dist folder would be owned by admin and would keep the app from extracting its binaries when you run it from command line (as a normal user). Would be helpful to see the whole output log.

Hi, thanks for the replies.

The permissions idea was a good one but I checked and it has no bearing on it.

Heres the build log:

[java]Apache Ant™ version 1.8.2 compiled on May 18 2012
Trying the default build file: build.xml
Buildfile: /workspace/av/trunk/avClient/build.xml
Detected Java version: 1.6 in: /usr/lib/jvm/java-6-openjdk-amd64/jre
Detected OS: Linux
parsing buildfile /workspace/av/trunk/avClient/build.xml with URI = file:/workspace/av/trunk/avClient/build.xml
Project base dir set to: /workspace/av/trunk/avClient
parsing buildfile jar:file:/usr/share/ant/lib/ant.jar!/org/apache/tools/ant/antlib.xml with URI = jar:file:/usr/share/ant/lib/ant.jar!/org/apache/tools/ant/antlib.xml from a zip file
Importing file /workspace/av/trunk/avClient/nbproject/build-impl.xml from /workspace/av/trunk/avClient/build.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /workspace/av/trunk/avClient/nbproject/build-impl.xml with URI = file:/workspace/av/trunk/avClient/nbproject/build-impl.xml
Importing file /workspace/av/trunk/avClient/nbproject/launch4j-impl.xml from /workspace/av/trunk/avClient/nbproject/build-impl.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /workspace/av/trunk/avClient/nbproject/launch4j-impl.xml with URI = file:/workspace/av/trunk/avClient/nbproject/launch4j-impl.xml
Overriding previous definition of reference to ant.projectHelper
Importing file /workspace/av/trunk/avClient/nbproject/linuxlauncher-impl.xml from /workspace/av/trunk/avClient/nbproject/build-impl.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /workspace/av/trunk/avClient/nbproject/linuxlauncher-impl.xml with URI = file:/workspace/av/trunk/avClient/nbproject/linuxlauncher-impl.xml
Overriding previous definition of reference to ant.projectHelper
Importing file /workspace/av/trunk/avClient/nbproject/macapp-impl.xml from /workspace/av/trunk/avClient/nbproject/build-impl.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /workspace/av/trunk/avClient/nbproject/macapp-impl.xml with URI = file:/workspace/av/trunk/avClient/nbproject/macapp-impl.xml
Overriding previous definition of reference to ant.projectHelper
Importing file /workspace/av/trunk/avClient/nbproject/assets-impl.xml from /workspace/av/trunk/avClient/nbproject/build-impl.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /workspace/av/trunk/avClient/nbproject/assets-impl.xml with URI = file:/workspace/av/trunk/avClient/nbproject/assets-impl.xml
Overriding previous definition of reference to ant.projectHelper
Overriding previous definition of reference to ant.projectHelper
Build sequence for target(s) `jar’ is [-pre-init, -init-private, -init-user, -init-project, -init-macrodef-property, -init-assets, -do-init, -post-init, -init-check, -init-ap-cmdline-properties, -init-macrodef-javac-with-processors, -init-macrodef-javac-without-processors, -init-macrodef-javac, -init-macrodef-test-impl, -init-macrodef-junit-init, -init-macrodef-junit-single, -init-test-properties, -init-macrodef-junit-batch, -init-macrodef-junit, -init-macrodef-junit-impl, -init-macrodef-testng, -init-macrodef-testng-impl, -init-macrodef-test, -init-macrodef-junit-debug, -init-macrodef-junit-debug-batch, -init-macrodef-junit-debug-impl, -init-macrodef-test-debug-junit, -init-macrodef-testng-debug, -init-macrodef-testng-debug-impl, -init-macrodef-test-debug-testng, -init-macrodef-test-debug, -init-debug-args, -init-macrodef-nbjpda, -init-macrodef-debug, -init-macrodef-java, -init-presetdef-jar, -init-ap-cmdline-supported, -init-ap-cmdline, init, -deps-jar-init, deps-jar, -check-automatic-build, -clean-after-automatic-build, -verify-automatic-build, -pre-pre-compile, -pre-compile, -copy-persistence-xml, -compile-depend, -do-compile, -post-compile, compile, -pre-jar, -pre-pre-jar, -do-jar-with-manifest, -do-jar-without-manifest, -do-jar-with-mainclass, -do-jar-with-libraries-create-manifest, -do-jar-with-libraries-copy-manifest, -do-jar-with-libraries-set-main, -do-jar-with-libraries-set-splashscreen, -init-macrodef-copylibs, -do-jar-with-libraries-pack, -do-jar-with-libraries-delete-manifest, -do-jar-with-libraries, -post-jar, -test-linux-launcher-enabled, -linux-launcher, -test-mac-app-enabled, -mac-app, -test-launch4j-exe-enabled, -launch4j-exe, jar]
Complete build sequence is [-pre-init, -init-private, -init-user, -init-project, -init-macrodef-property, -init-assets, -do-init, -post-init, -init-check, -init-ap-cmdline-properties, -init-macrodef-javac-with-processors, -init-macrodef-javac-without-processors, -init-macrodef-javac, -init-macrodef-test-impl, -init-macrodef-junit-init, -init-macrodef-junit-single, -init-test-properties, -init-macrodef-junit-batch, -init-macrodef-junit, -init-macrodef-junit-impl, -init-macrodef-testng, -init-macrodef-testng-impl, -init-macrodef-test, -init-macrodef-junit-debug, -init-macrodef-junit-debug-batch, -init-macrodef-junit-debug-impl, -init-macrodef-test-debug-junit, -init-macrodef-testng-debug, -init-macrodef-testng-debug-impl, -init-macrodef-test-debug-testng, -init-macrodef-test-debug, -init-debug-args, -init-macrodef-nbjpda, -init-macrodef-debug, -init-macrodef-java, -init-presetdef-jar, -init-ap-cmdline-supported, -init-ap-cmdline, init, -deps-jar-init, deps-jar, -check-automatic-build, -clean-after-automatic-build, -verify-automatic-build, -pre-pre-compile, -pre-compile, -copy-persistence-xml, -compile-depend, -do-compile, -post-compile, compile, -pre-jar, -pre-pre-jar, -do-jar-with-manifest, -do-jar-without-manifest, -do-jar-with-mainclass, -do-jar-with-libraries-create-manifest, -do-jar-with-libraries-copy-manifest, -do-jar-with-libraries-set-main, -do-jar-with-libraries-set-splashscreen, -init-macrodef-copylibs, -do-jar-with-libraries-pack, -do-jar-with-libraries-delete-manifest, -do-jar-with-libraries, -post-jar, -test-linux-launcher-enabled, -linux-launcher, -test-mac-app-enabled, -mac-app, -test-launch4j-exe-enabled, -launch4j-exe, jar, avClient-impl.-pre-jar, -pre-compile-single, -do-compile-single, -post-compile-single, compile-single, run-single, -javadoc-build, -profile-post-init, avClient-impl.-init-ap-cmdline, -pre-pre-compile-test, -pre-compile-test-single, -do-compile-test-single, -post-compile-test-single, compile-test-single, -pre-test-run-single, -do-test-run-single-method, avClient-impl.-post-compile-test, -pre-compile-test, -compile-test-depend, -do-compile-test, -post-compile-test, compile-test, avClient-impl.-debug-start-debugger-test, avClient-impl.-init-ap-cmdline-supported, -profile-check, profile-test-with-main, avClient-impl.-post-compile-test-single, avClient-impl.-javadoc-browse, avClient-impl.-do-jar-with-mainclass, avClient-impl.-deps-jar-init, avClient-impl.-do-not-recompile, -post-test-run-single-method, avClient-impl.test-single-method, -pre-test-run, -do-test-run, -profile-init-macrodef-profile, -check-call-dep, -profile-pre-init, avClient-impl.-profile-init-check, avClient-impl.-init-check, avClient-impl.-init-macrodef-property, test-report, -post-test-run, -test-browse, test, -javadoc-browse, javadoc, default, avClient-impl.-init-test-properties, -debug-start-debuggee-applet, avClient-impl.-init-macrodef-java, avClient-impl.run-test-with-main, avClient-impl.-do-compile-single, avClient-impl.-post-compile-single, -debug-start-debuggee-main-test, -debug-start-debugger, avClient-impl.debug-applet, -profile-init-check, profile-init, -profile-pre72, profile, avClient-impl.-init-macrodef-junit, avClient-impl.-debug-start-debuggee-test-method, avClient-impl.-post-test-run-single-method, avClient-impl.-do-compile-test, avClient-impl.-do-jar-with-libraries-set-splashscreen, -do-test-run-single, -post-test-run-single, avClient-impl.test-single, -pre-debug-fix, -do-debug-fix, avClient-impl.debug-fix, avClient-impl.-post-compile, avClient-impl.-debug-start-debuggee-applet, -warn-already-built-jar, avClient-impl.-do-jar-with-manifest, avClient-impl.-post-init, -warn-already-built-clean, avClient-impl.deps-jar, -do-not-recompile, avClient-impl.-javadoc-build, -debug-start-debugger-test, -debug-start-debuggee-test, debug-test, avClient-impl.-init-macrodef-testng-debug-impl, avClient-impl.-init-macrodef-junit-debug, avClient-impl.-debug-start-debugger, avClient-impl.-init-user, avClient-impl.-post-clean, avClient-impl.-profile-check, avClient-impl.-debug-start-debuggee, avClient-impl.compile-test, avClient-impl.-do-jar-with-libraries, -deps-clean-init, deps-clean, -do-clean, -post-clean, avClient-impl.clean, -debug-start-debuggee-test-method, avClient-impl.debug-test-method, avClient-impl.-check-call-dep, avClient-impl.-pre-test-run, avClient-impl.-init-macrodef-junit-debug-impl, avClient-impl.-pre-pre-compile-test, avClient-impl.-init-presetdef-jar, avClient-impl.-init-macrodef-testng, avClient-impl.-init-macrodef-copylibs, avClient-impl.-do-clean, avClient-impl.-init-macrodef-javac, debug-applet, avClient-impl.-do-test-run-single-method, avClient-impl.-warn-already-built-jar, avClient-impl.-profile-test-single-pre72, avClient-impl.-verify-automatic-build, avClient-impl.-profile-single-pre72, -debug-start-debugger-stepinto, avClient-impl.-init-macrodef-nbjpda, run, avClient-impl.-pre-compile-test, -debug-start-debugger-main-test, avClient-impl.debug-test-with-main, -do-debug-fix-test, avClient-impl.-init-project, -profile-test-single-pre72, avClient-impl.-init-macrodef-junit-impl, launch4j-impl.-launch4j-exe, avClient-impl.-init-macrodef-junit-init, avClient-impl.-init-macrodef-junit-single, avClient-impl.-debug-start-debuggee-main-test, avClient-impl.-test-browse, avClient-impl.-check-automatic-build, avClient-impl.-profile-init-macrodef-profile, avClient-impl.-clean-after-automatic-build, linuxlauncher-impl.-test-linux-launcher-enabled, avClient-impl.-init-debug-args, -profile-applet-pre72, avClient-impl.-profile-pre-init, avClient-impl.compile, avClient-impl.deps-clean, run-applet, avClient-impl.test, test-single-method, avClient-impl.-init-macrodef-testng-debug, avClient-impl.-do-compile, avClient-impl.profile-test, run-test-with-main, -maybe-call-dep, linuxlauncher-impl.-linux-launcher, avClient-impl.-compile-test-depend, -profile-single-pre72, avClient-impl.profile-single, avClient-impl.-pre-compile-test-single, -debug-start-debuggee, debug, avClient-impl.-pre-debug-fix, macapp-impl.-test-mac-app-enabled, macapp-impl.-mac-app, avClient-impl.compile-test-single, avClient-impl.-init-macrodef-debug, debug-test-with-main, avClient-impl.-do-jar-without-manifest, avClient-impl.-pre-pre-jar, avClient-impl.-init-macrodef-test-debug, avClient-impl.-do-jar-with-libraries-delete-manifest, avClient-impl.-post-jar, avClient-impl.test-report, avClient-impl.run-single, avClient-impl.javadoc, avClient-impl.-debug-start-debugger-stepinto, profile-test, avClient-impl.debug-stepinto, profile-single, profile-test-single, avClient-impl.profile-test-with-main, avClient-impl.-profile-post-init, debug-test-method, assets-impl.-init-assets, avClient-impl.-pre-compile, -debug-start-debuggee-single, debug-fix, avClient-impl.-profile-applet-pre72, avClient-impl.-post-test-run, avClient-impl.debug-single, avClient-impl.jar, profile-applet, avClient-impl.-debug-start-debugger-main-test, launch4j-impl.-test-launch4j-exe-enabled, clean, avClient-impl.-do-test-run-single, avClient-impl.-debug-start-debuggee-single, avClient-impl.debug-fix-test, avClient-impl.-profile-pre72, avClient-impl.debug-test, debug-stepinto, avClient-impl.-init-macrodef-test, avClient-impl.default, avClient-impl.-pre-init, avClient-impl.-init-ap-cmdline-properties, avClient-impl.-init-macrodef-javac-with-processors, avClient-impl.-init-macrodef-test-impl, avClient-impl.profile-test-single, avClient-impl.profile, avClient-impl.init, avClient-impl.-post-test-run-single, avClient-impl.-pre-pre-compile, avClient-impl.-pre-test-run-single, avClient-impl.-pre-compile-single, avClient-impl.-do-jar-with-libraries-create-manifest, avClient-impl.profile-init, avClient-impl.-do-debug-fix, debug-single, avClient-impl.-do-init, avClient-impl.-init-macrodef-junit-batch, avClient-impl.-debug-start-debuggee-test, avClient-impl.-deps-clean-init, avClient-impl.-init-macrodef-test-debug-testng, avClient-impl.-init-macrodef-javac-without-processors, avClient-impl.-do-jar-with-libraries-pack, avClient-impl.profile-applet, debug-fix-test, avClient-impl.run, avClient-impl.-compile-depend, avClient-impl.-warn-already-built-clean, avClient-impl.-do-test-run, avClient-impl.-do-jar-with-libraries-copy-manifest, avClient-impl.compile-single, avClient-impl.-init-macrodef-test-debug-junit, test-single, avClient-impl.-do-debug-fix-test, avClient-impl.-maybe-call-dep, avClient-impl.-init-macrodef-junit-debug-batch, avClient-impl.-do-jar-with-libraries-set-main, avClient-impl.-copy-persistence-xml, avClient-impl.-init-private, avClient-impl.run-applet, avClient-impl.-init-macrodef-testng-impl, avClient-impl.debug, avClient-impl.-do-compile-test-single, ]

-pre-init:

-init-private:
[property] Loading /workspace/av/trunk/avClient/nbproject/private/config.properties
Property “config” has not been set
[property] Loading /workspace/av/trunk/avClient/nbproject/private/configs/${config}.properties
[property] Unable to find property file: /workspace/av/trunk/avClient/nbproject/private/configs/${config}.properties
[property] Loading /workspace/av/trunk/avClient/nbproject/private/private.properties

-init-user:
[property] Loading /home/pickles/.jmonkeyplatform/3.0/build.properties
Override ignored for property “default.javac.source”
Override ignored for property “default.javac.target”

-init-project:
Property “config” has not been set
[property] Loading /workspace/av/trunk/avClient/nbproject/configs/${config}.properties
[property] Unable to find property file: /workspace/av/trunk/avClient/nbproject/configs/${config}.properties
[property] Loading /workspace/av/trunk/avClient/nbproject/project.properties
Property “netbeans.home” has not been set
Override ignored for property “libs.jme3.classpath”
Override ignored for property “compile.on.save”
Override ignored for property “libs.launch4j.classpath”
Override ignored for property “file.reference.nifty-1.4.0-SNAPSHOT.jar”
Override ignored for property “libs.CopyLibs.classpath”
Override ignored for property “file.reference.nifty-default-controls-1.4.0-SNAPSHOT.jar”
Override ignored for property “file.reference.nifty-style-black-1.4.0-SNAPSHOT.jar”
Override ignored for property “libs.junit_4.classpath”

-init-macrodef-property:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/1:property

-init-assets:
[jar] Building jar: /workspace/av/trunk/avClient/build/assets.jar
[jar] adding directory META-INF/
[jar] adding entry META-INF/MANIFEST.MF
[jar] adding directory Interface/
[jar] adding directory Interface/Fonts/
[jar] adding directory MatDefs/
[jar] adding directory Materials/
[jar] adding directory Models/
[jar] adding directory Models/Carriers/
[jar] adding directory Models/Cruisers/
[jar] adding directory Models/Fighters/
[jar] adding directory Models/Groundforces/
[jar] adding directory Models/Groundforces/Textures/
[jar] adding directory Models/carrier/
[jar] adding directory Models/figher2/
[jar] adding directory Models/figher2/Textures/
[jar] adding directory Models/fighter/

  [jar] adding entry Textures/wormhole-beta.jpg
  [jar] adding entry newhtml.html
  [jar] No Implementation-Title set.No Implementation-Version set.No Implementation-Vendor set.
  [jar] Location: /workspace/av/trunk/avClient/nbproject/assets-impl.xml:5: 

[pathconvert] Set property run.classpath.without.build.classes.dir = /home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-desktop.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-plugins.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-effects.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jogg.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/j-ogg-oggd.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/j-ogg-vorbisd.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-terrain.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-lwjgl.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-lwjgl-natives.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jinput.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/lwjgl.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jbullet.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jbullet.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/vecmath.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/stack-alloc.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-niftygui.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/eventbus.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/xmlpull-xpp3.jar:/home/pickles/.jmonkeyplatform/3.0/libs/jME3-networking.jar:/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar:/workspace/av/trunk/avClient/resources/nifty-jars/nifty-style-black-1.4.0-SNAPSHOT.jar:/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar:/workspace/av/trunk/avClient/resources/beanshell/bsh-2.1.8.jar::/workspace/av/trunk/avClient/build/assets.jar

-do-init:
[available] Found: MANIFEST.MF
Property “application.splash” has not been set
Property “application.splash” has not been set
[available] Unable to find ${application.splash}
[available] Found: test
[available] Found: src
Override ignored for property “run.jvmargs”
Override ignored for property “javac.compilerargs”
Property “no.dependencies” has not been set
Override ignored for property “javac.debug”
Override ignored for property “javadoc.preview”
Override ignored for property “source.encoding”
Override ignored for property “javadoc.encoding.used”
Override ignored for property “includes”
Override ignored for property “excludes”
Override ignored for property “do.depend”
Override ignored for property “jar.index”
[available] Unable to find src/META-INF/persistence.xml to set property has.persistence.xml
dropping /workspace/av/trunk/avClient/build/classes from path as it doesn’t exist
dropping /workspace/av/trunk/avClient/build/test/classes from path as it doesn’t exist
dropping /workspace/av/trunk/avClient/build/classes from path as it doesn’t exist
dropping /workspace/av/trunk/avClient/build/test/classes from path as it doesn’t exist
[available] Unable to load class org.testng.annotations.Test
Property “testng.available” has not been set
Property “junit+testng.available” has not been set
Property “junit+testng.available” has not been set

-post-init:

-init-check:

-init-ap-cmdline-properties:
Override ignored for property “annotation.processing.enabled”
Override ignored for property “annotation.processing.processors.list”
Override ignored for property “annotation.processing.run.all.processors”
Override ignored for property “javac.processorpath”

-init-macrodef-javac-with-processors:
Skipped because property ‘ap.supported.internal’ not set.

-init-macrodef-javac-without-processors:
Property “empty.dir” has not been set
Property “empty.dir” has not been set
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:javac

-init-macrodef-javac:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:depend
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:force-recompile

-init-macrodef-test-impl:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:test-impl

-init-macrodef-junit-init:

-init-macrodef-junit-single:
Skipped because property ‘false’ not set.

-init-test-properties:

-init-macrodef-junit-batch:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:junit

-init-macrodef-junit:

-init-macrodef-junit-impl:
Trying to override old definition of task http://www.netbeans.org/ns/j2se-project/3:test-impl
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:test-impl

-init-macrodef-testng:
Property “testng.available” has not been set
Property “testng.available” has not been set
Skipped because property ‘${testng.available}’ not set.

-init-macrodef-testng-impl:
Property “testng.available” has not been set
Property “testng.available” has not been set
Skipped because property ‘${testng.available}’ not set.

-init-macrodef-test:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:test

-init-macrodef-junit-debug:
Skipped because property ‘true’ set.

-init-macrodef-junit-debug-batch:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:junit-debug

-init-macrodef-junit-debug-impl:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:test-debug-impl

-init-macrodef-test-debug-junit:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:test-debug

-init-macrodef-testng-debug:
Property “testng.available” has not been set
Property “testng.available” has not been set
Skipped because property ‘${testng.available}’ not set.

-init-macrodef-testng-debug-impl:
Property “testng.available” has not been set
Property “testng.available” has not been set
Skipped because property ‘${testng.available}’ not set.

-init-macrodef-test-debug-testng:
Property “testng.available” has not been set
Property “testng.available” has not been set
Skipped because property ‘${testng.available}’ not set.

-init-macrodef-test-debug:

-init-debug-args:
Property “have-jdk-older-than-1.4” has not been set
Property “debug.transport” has not been set

-init-macrodef-nbjpda:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/1:nbjpdastart
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/1:nbjpdareload

-init-macrodef-debug:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:debug

-init-macrodef-java:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/1:java

-init-presetdef-jar:
[presetdef] defining preset http://www.netbeans.org/ns/j2se-project/1:jar

-init-ap-cmdline-supported:
Skipped because property ‘ap.supported.internal’ not set.

-init-ap-cmdline:

init:

-deps-jar-init:
[delete] Could not find file /workspace/av/trunk/avClient/build/built-jar.properties to delete.

deps-jar:
[mkdir] Skipping /workspace/av/trunk/avClient/build because it already exists.
[touch] Creating /workspace/av/trunk/avClient/build/built-jar.properties
[property] Loading /workspace/av/trunk/avClient/build/built-jar.properties
Project base dir set to: /workspace/av/trunk/avClient
[antcall] calling target(s) [-warn-already-built-jar] in build file /workspace/av/trunk/avClient/build.xml
parsing buildfile /workspace/av/trunk/avClient/build.xml with URI = file:/workspace/av/trunk/avClient/build.xml
Project base dir set to: /workspace/av/trunk/avClient
Importing file /workspace/av/trunk/avClient/nbproject/build-impl.xml from /workspace/av/trunk/avClient/build.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /workspace/av/trunk/avClient/nbproject/build-impl.xml with URI = file:/workspace/av/trunk/avClient/nbproject/build-impl.xml
Importing file /workspace/av/trunk/avClient/nbproject/launch4j-impl.xml from /workspace/av/trunk/avClient/nbproject/build-impl.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /workspace/av/trunk/avClient/nbproject/launch4j-impl.xml with URI = file:/workspace/av/trunk/avClient/nbproject/launch4j-impl.xml
Overriding previous definition of reference to ant.projectHelper
Importing file /workspace/av/trunk/avClient/nbproject/linuxlauncher-impl.xml from /workspace/av/trunk/avClient/nbproject/build-impl.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /workspace/av/trunk/avClient/nbproject/linuxlauncher-impl.xml with URI = file:/workspace/av/trunk/avClient/nbproject/linuxlauncher-impl.xml
Overriding previous definition of reference to ant.projectHelper
Importing file /workspace/av/trunk/avClient/nbproject/macapp-impl.xml from /workspace/av/trunk/avClient/nbproject/build-impl.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /workspace/av/trunk/avClient/nbproject/macapp-impl.xml with URI = file:/workspace/av/trunk/avClient/nbproject/macapp-impl.xml
Overriding previous definition of reference to ant.projectHelper
Importing file /workspace/av/trunk/avClient/nbproject/assets-impl.xml from /workspace/av/trunk/avClient/nbproject/build-impl.xml
Overriding previous definition of reference to ant.projectHelper
parsing buildfile /workspace/av/trunk/avClient/nbproject/assets-impl.xml with URI = file:/workspace/av/trunk/avClient/nbproject/assets-impl.xml
Overriding previous definition of reference to ant.projectHelper
Overriding previous definition of reference to ant.projectHelper
Build sequence for target(s) -warn-already-built-jar' is [-warn-already-built-jar] Complete build sequence is [-warn-already-built-jar, avClient-impl.-pre-jar, -pre-init, -init-private, -init-user, -init-project, -init-macrodef-property, -init-assets, -do-init, -post-init, -init-check, -init-ap-cmdline-properties, -init-macrodef-javac-with-processors, -init-macrodef-javac-without-processors, -init-macrodef-javac, -init-macrodef-test-impl, -init-macrodef-junit-init, -init-macrodef-junit-single, -init-test-properties, -init-macrodef-junit-batch, -init-macrodef-junit, -init-macrodef-junit-impl, -init-macrodef-testng, -init-macrodef-testng-impl, -init-macrodef-test, -init-macrodef-junit-debug, -init-macrodef-junit-debug-batch, -init-macrodef-junit-debug-impl, -init-macrodef-test-debug-junit, -init-macrodef-testng-debug, -init-macrodef-testng-debug-impl, -init-macrodef-test-debug-testng, -init-macrodef-test-debug, -init-debug-args, -init-macrodef-nbjpda, -init-macrodef-debug, -init-macrodef-java, -init-presetdef-jar, -init-ap-cmdline-supported, -init-ap-cmdline, init, -deps-jar-init, deps-jar, -check-automatic-build, -clean-after-automatic-build, -verify-automatic-build, -pre-pre-compile, -pre-compile-single, -do-compile-single, -post-compile-single, compile-single, run-single, -javadoc-build, -pre-compile, -copy-persistence-xml, -compile-depend, -do-compile, -post-compile, compile, -test-linux-launcher-enabled, -linux-launcher, -profile-post-init, avClient-impl.-init-ap-cmdline, -pre-pre-compile-test, -pre-compile-test-single, -do-compile-test-single, -post-compile-test-single, compile-test-single, -pre-test-run-single, -do-test-run-single-method, avClient-impl.-post-compile-test, -pre-compile-test, -compile-test-depend, -do-compile-test, -post-compile-test, compile-test, avClient-impl.-debug-start-debugger-test, avClient-impl.-init-ap-cmdline-supported, -profile-check, profile-test-with-main, avClient-impl.-post-compile-test-single, avClient-impl.-javadoc-browse, -pre-pre-jar, -pre-jar, avClient-impl.-do-jar-with-mainclass, avClient-impl.-deps-jar-init, avClient-impl.-do-not-recompile, -post-test-run-single-method, avClient-impl.test-single-method, -pre-test-run, -do-test-run, -profile-init-macrodef-profile, -check-call-dep, -profile-pre-init, avClient-impl.-profile-init-check, avClient-impl.-init-check, avClient-impl.-init-macrodef-property, test-report, -post-test-run, -test-browse, test, -do-jar-with-manifest, -do-jar-without-manifest, -do-jar-with-mainclass, -do-jar-with-libraries-create-manifest, -do-jar-with-libraries-copy-manifest, -do-jar-with-libraries-set-main, -do-jar-with-libraries-set-splashscreen, -init-macrodef-copylibs, -do-jar-with-libraries-pack, -do-jar-with-libraries-delete-manifest, -do-jar-with-libraries, -post-jar, -test-mac-app-enabled, -mac-app, -test-launch4j-exe-enabled, -launch4j-exe, jar, -javadoc-browse, javadoc, default, avClient-impl.-init-test-properties, -debug-start-debuggee-applet, avClient-impl.-init-macrodef-java, avClient-impl.run-test-with-main, avClient-impl.-do-compile-single, avClient-impl.-post-compile-single, -debug-start-debuggee-main-test, -debug-start-debugger, avClient-impl.debug-applet, -profile-init-check, profile-init, -profile-pre72, profile, avClient-impl.-init-macrodef-junit, avClient-impl.-debug-start-debuggee-test-method, avClient-impl.-post-test-run-single-method, avClient-impl.-do-compile-test, avClient-impl.-do-jar-with-libraries-set-splashscreen, -do-test-run-single, -post-test-run-single, avClient-impl.test-single, -pre-debug-fix, -do-debug-fix, avClient-impl.debug-fix, avClient-impl.-post-compile, avClient-impl.-debug-start-debuggee-applet, avClient-impl.-do-jar-with-manifest, avClient-impl.-post-init, -warn-already-built-clean, avClient-impl.deps-jar, -do-not-recompile, avClient-impl.-javadoc-build, -debug-start-debugger-test, -debug-start-debuggee-test, debug-test, avClient-impl.-init-macrodef-testng-debug-impl, avClient-impl.-init-macrodef-junit-debug, avClient-impl.-debug-start-debugger, avClient-impl.-init-user, avClient-impl.-post-clean, avClient-impl.-profile-check, avClient-impl.-debug-start-debuggee, avClient-impl.compile-test, avClient-impl.-do-jar-with-libraries, -deps-clean-init, deps-clean, -do-clean, -post-clean, avClient-impl.clean, -debug-start-debuggee-test-method, avClient-impl.debug-test-method, avClient-impl.-check-call-dep, avClient-impl.-pre-test-run, avClient-impl.-init-macrodef-junit-debug-impl, avClient-impl.-pre-pre-compile-test, avClient-impl.-init-presetdef-jar, avClient-impl.-init-macrodef-testng, avClient-impl.-init-macrodef-copylibs, avClient-impl.-do-clean, avClient-impl.-init-macrodef-javac, debug-applet, avClient-impl.-do-test-run-single-method, avClient-impl.-warn-already-built-jar, avClient-impl.-profile-test-single-pre72, avClient-impl.-verify-automatic-build, avClient-impl.-profile-single-pre72, -debug-start-debugger-stepinto, avClient-impl.-init-macrodef-nbjpda, run, avClient-impl.-pre-compile-test, -debug-start-debugger-main-test, avClient-impl.debug-test-with-main, -do-debug-fix-test, avClient-impl.-init-project, -profile-test-single-pre72, avClient-impl.-init-macrodef-junit-impl, launch4j-impl.-launch4j-exe, avClient-impl.-init-macrodef-junit-init, avClient-impl.-init-macrodef-junit-single, avClient-impl.-debug-start-debuggee-main-test, avClient-impl.-test-browse, avClient-impl.-check-automatic-build, avClient-impl.-profile-init-macrodef-profile, avClient-impl.-clean-after-automatic-build, linuxlauncher-impl.-test-linux-launcher-enabled, avClient-impl.-init-debug-args, -profile-applet-pre72, avClient-impl.-profile-pre-init, avClient-impl.compile, avClient-impl.deps-clean, run-applet, avClient-impl.test, test-single-method, avClient-impl.-init-macrodef-testng-debug, avClient-impl.-do-compile, avClient-impl.profile-test, run-test-with-main, -maybe-call-dep, linuxlauncher-impl.-linux-launcher, avClient-impl.-compile-test-depend, -profile-single-pre72, avClient-impl.profile-single, avClient-impl.-pre-compile-test-single, -debug-start-debuggee, debug, avClient-impl.-pre-debug-fix, macapp-impl.-test-mac-app-enabled, macapp-impl.-mac-app, avClient-impl.compile-test-single, avClient-impl.-init-macrodef-debug, debug-test-with-main, avClient-impl.-do-jar-without-manifest, avClient-impl.-pre-pre-jar, avClient-impl.-init-macrodef-test-debug, avClient-impl.-do-jar-with-libraries-delete-manifest, avClient-impl.-post-jar, avClient-impl.test-report, avClient-impl.run-single, avClient-impl.javadoc, avClient-impl.-debug-start-debugger-stepinto, profile-test, avClient-impl.debug-stepinto, profile-single, profile-test-single, avClient-impl.profile-test-with-main, avClient-impl.-profile-post-init, debug-test-method, assets-impl.-init-assets, avClient-impl.-pre-compile, -debug-start-debuggee-single, debug-fix, avClient-impl.-profile-applet-pre72, avClient-impl.-post-test-run, avClient-impl.debug-single, avClient-impl.jar, profile-applet, avClient-impl.-debug-start-debugger-main-test, launch4j-impl.-test-launch4j-exe-enabled, clean, avClient-impl.-do-test-run-single, avClient-impl.-debug-start-debuggee-single, avClient-impl.debug-fix-test, avClient-impl.-profile-pre72, avClient-impl.debug-test, debug-stepinto, avClient-impl.-init-macrodef-test, avClient-impl.default, avClient-impl.-pre-init, avClient-impl.-init-ap-cmdline-properties, avClient-impl.-init-macrodef-javac-with-processors, avClient-impl.-init-macrodef-test-impl, avClient-impl.profile-test-single, avClient-impl.profile, avClient-impl.init, avClient-impl.-post-test-run-single, avClient-impl.-pre-pre-compile, avClient-impl.-pre-test-run-single, avClient-impl.-pre-compile-single, avClient-impl.-do-jar-with-libraries-create-manifest, avClient-impl.profile-init, avClient-impl.-do-debug-fix, debug-single, avClient-impl.-do-init, avClient-impl.-init-macrodef-junit-batch, avClient-impl.-debug-start-debuggee-test, avClient-impl.-deps-clean-init, avClient-impl.-init-macrodef-test-debug-testng, avClient-impl.-init-macrodef-javac-without-processors, avClient-impl.-do-jar-with-libraries-pack, avClient-impl.profile-applet, debug-fix-test, avClient-impl.run, avClient-impl.-compile-depend, avClient-impl.-warn-already-built-clean, avClient-impl.-do-test-run, avClient-impl.-do-jar-with-libraries-copy-manifest, avClient-impl.compile-single, avClient-impl.-init-macrodef-test-debug-junit, test-single, avClient-impl.-do-debug-fix-test, avClient-impl.-maybe-call-dep, avClient-impl.-init-macrodef-junit-debug-batch, avClient-impl.-do-jar-with-libraries-set-main, avClient-impl.-copy-persistence-xml, avClient-impl.-init-private, avClient-impl.run-applet, avClient-impl.-init-macrodef-testng-impl, avClient-impl.debug, avClient-impl.-do-compile-test-single, ] [antcall] Entering /workspace/av/trunk/avClient/build.xml... Build sequence for target(s) -warn-already-built-jar’ is [-warn-already-built-jar]
Complete build sequence is [-warn-already-built-jar, avClient-impl.-pre-jar, -pre-init, -init-private, -init-user, -init-project, -init-macrodef-property, -init-assets, -do-init, -post-init, -init-check, -init-ap-cmdline-properties, -init-macrodef-javac-with-processors, -init-macrodef-javac-without-processors, -init-macrodef-javac, -init-macrodef-test-impl, -init-macrodef-junit-init, -init-macrodef-junit-single, -init-test-properties, -init-macrodef-junit-batch, -init-macrodef-junit, -init-macrodef-junit-impl, -init-macrodef-testng, -init-macrodef-testng-impl, -init-macrodef-test, -init-macrodef-junit-debug, -init-macrodef-junit-debug-batch, -init-macrodef-junit-debug-impl, -init-macrodef-test-debug-junit, -init-macrodef-testng-debug, -init-macrodef-testng-debug-impl, -init-macrodef-test-debug-testng, -init-macrodef-test-debug, -init-debug-args, -init-macrodef-nbjpda, -init-macrodef-debug, -init-macrodef-java, -init-presetdef-jar, -init-ap-cmdline-supported, -init-ap-cmdline, init, -deps-jar-init, deps-jar, -check-automatic-build, -clean-after-automatic-build, -verify-automatic-build, -pre-pre-compile, -pre-compile-single, -do-compile-single, -post-compile-single, compile-single, run-single, -javadoc-build, -pre-compile, -copy-persistence-xml, -compile-depend, -do-compile, -post-compile, compile, -test-linux-launcher-enabled, -linux-launcher, -profile-post-init, avClient-impl.-init-ap-cmdline, -pre-pre-compile-test, -pre-compile-test-single, -do-compile-test-single, -post-compile-test-single, compile-test-single, -pre-test-run-single, -do-test-run-single-method, avClient-impl.-post-compile-test, -pre-compile-test, -compile-test-depend, -do-compile-test, -post-compile-test, compile-test, avClient-impl.-debug-start-debugger-test, avClient-impl.-init-ap-cmdline-supported, -profile-check, profile-test-with-main, avClient-impl.-post-compile-test-single, avClient-impl.-javadoc-browse, -pre-pre-jar, -pre-jar, avClient-impl.-do-jar-with-mainclass, avClient-impl.-deps-jar-init, avClient-impl.-do-not-recompile, -post-test-run-single-method, avClient-impl.test-single-method, -pre-test-run, -do-test-run, -profile-init-macrodef-profile, -check-call-dep, -profile-pre-init, avClient-impl.-profile-init-check, avClient-impl.-init-check, avClient-impl.-init-macrodef-property, test-report, -post-test-run, -test-browse, test, -do-jar-with-manifest, -do-jar-without-manifest, -do-jar-with-mainclass, -do-jar-with-libraries-create-manifest, -do-jar-with-libraries-copy-manifest, -do-jar-with-libraries-set-main, -do-jar-with-libraries-set-splashscreen, -init-macrodef-copylibs, -do-jar-with-libraries-pack, -do-jar-with-libraries-delete-manifest, -do-jar-with-libraries, -post-jar, -test-mac-app-enabled, -mac-app, -test-launch4j-exe-enabled, -launch4j-exe, jar, -javadoc-browse, javadoc, default, avClient-impl.-init-test-properties, -debug-start-debuggee-applet, avClient-impl.-init-macrodef-java, avClient-impl.run-test-with-main, avClient-impl.-do-compile-single, avClient-impl.-post-compile-single, -debug-start-debuggee-main-test, -debug-start-debugger, avClient-impl.debug-applet, -profile-init-check, profile-init, -profile-pre72, profile, avClient-impl.-init-macrodef-junit, avClient-impl.-debug-start-debuggee-test-method, avClient-impl.-post-test-run-single-method, avClient-impl.-do-compile-test, avClient-impl.-do-jar-with-libraries-set-splashscreen, -do-test-run-single, -post-test-run-single, avClient-impl.test-single, -pre-debug-fix, -do-debug-fix, avClient-impl.debug-fix, avClient-impl.-post-compile, avClient-impl.-debug-start-debuggee-applet, avClient-impl.-do-jar-with-manifest, avClient-impl.-post-init, -warn-already-built-clean, avClient-impl.deps-jar, -do-not-recompile, avClient-impl.-javadoc-build, -debug-start-debugger-test, -debug-start-debuggee-test, debug-test, avClient-impl.-init-macrodef-testng-debug-impl, avClient-impl.-init-macrodef-junit-debug, avClient-impl.-debug-start-debugger, avClient-impl.-init-user, avClient-impl.-post-clean, avClient-impl.-profile-check, avClient-impl.-debug-start-debuggee, avClient-impl.compile-test, avClient-impl.-do-jar-with-libraries, -deps-clean-init, deps-clean, -do-clean, -post-clean, avClient-impl.clean, -debug-start-debuggee-test-method, avClient-impl.debug-test-method, avClient-impl.-check-call-dep, avClient-impl.-pre-test-run, avClient-impl.-init-macrodef-junit-debug-impl, avClient-impl.-pre-pre-compile-test, avClient-impl.-init-presetdef-jar, avClient-impl.-init-macrodef-testng, avClient-impl.-init-macrodef-copylibs, avClient-impl.-do-clean, avClient-impl.-init-macrodef-javac, debug-applet, avClient-impl.-do-test-run-single-method, avClient-impl.-warn-already-built-jar, avClient-impl.-profile-test-single-pre72, avClient-impl.-verify-automatic-build, avClient-impl.-profile-single-pre72, -debug-start-debugger-stepinto, avClient-impl.-init-macrodef-nbjpda, run, avClient-impl.-pre-compile-test, -debug-start-debugger-main-test, avClient-impl.debug-test-with-main, -do-debug-fix-test, avClient-impl.-init-project, -profile-test-single-pre72, avClient-impl.-init-macrodef-junit-impl, launch4j-impl.-launch4j-exe, avClient-impl.-init-macrodef-junit-init, avClient-impl.-init-macrodef-junit-single, avClient-impl.-debug-start-debuggee-main-test, avClient-impl.-test-browse, avClient-impl.-check-automatic-build, avClient-impl.-profile-init-macrodef-profile, avClient-impl.-clean-after-automatic-build, linuxlauncher-impl.-test-linux-launcher-enabled, avClient-impl.-init-debug-args, -profile-applet-pre72, avClient-impl.-profile-pre-init, avClient-impl.compile, avClient-impl.deps-clean, run-applet, avClient-impl.test, test-single-method, avClient-impl.-init-macrodef-testng-debug, avClient-impl.-do-compile, avClient-impl.profile-test, run-test-with-main, -maybe-call-dep, linuxlauncher-impl.-linux-launcher, avClient-impl.-compile-test-depend, -profile-single-pre72, avClient-impl.profile-single, avClient-impl.-pre-compile-test-single, -debug-start-debuggee, debug, avClient-impl.-pre-debug-fix, macapp-impl.-test-mac-app-enabled, macapp-impl.-mac-app, avClient-impl.compile-test-single, avClient-impl.-init-macrodef-debug, debug-test-with-main, avClient-impl.-do-jar-without-manifest, avClient-impl.-pre-pre-jar, avClient-impl.-init-macrodef-test-debug, avClient-impl.-do-jar-with-libraries-delete-manifest, avClient-impl.-post-jar, avClient-impl.test-report, avClient-impl.run-single, avClient-impl.javadoc, avClient-impl.-debug-start-debugger-stepinto, profile-test, avClient-impl.debug-stepinto, profile-single, profile-test-single, avClient-impl.profile-test-with-main, avClient-impl.-profile-post-init, debug-test-method, assets-impl.-init-assets, avClient-impl.-pre-compile, -debug-start-debuggee-single, debug-fix, avClient-impl.-profile-applet-pre72, avClient-impl.-post-test-run, avClient-impl.debug-single, avClient-impl.jar, profile-applet, avClient-impl.-debug-start-debugger-main-test, launch4j-impl.-test-launch4j-exe-enabled, clean, avClient-impl.-do-test-run-single, avClient-impl.-debug-start-debuggee-single, avClient-impl.debug-fix-test, avClient-impl.-profile-pre72, avClient-impl.debug-test, debug-stepinto, avClient-impl.-init-macrodef-test, avClient-impl.default, avClient-impl.-pre-init, avClient-impl.-init-ap-cmdline-properties, avClient-impl.-init-macrodef-javac-with-processors, avClient-impl.-init-macrodef-test-impl, avClient-impl.profile-test-single, avClient-impl.profile, avClient-impl.init, avClient-impl.-post-test-run-single, avClient-impl.-pre-pre-compile, avClient-impl.-pre-test-run-single, avClient-impl.-pre-compile-single, avClient-impl.-do-jar-with-libraries-create-manifest, avClient-impl.profile-init, avClient-impl.-do-debug-fix, debug-single, avClient-impl.-do-init, avClient-impl.-init-macrodef-junit-batch, avClient-impl.-debug-start-debuggee-test, avClient-impl.-deps-clean-init, avClient-impl.-init-macrodef-test-debug-testng, avClient-impl.-init-macrodef-javac-without-processors, avClient-impl.-do-jar-with-libraries-pack, avClient-impl.profile-applet, debug-fix-test, avClient-impl.run, avClient-impl.-compile-depend, avClient-impl.-warn-already-built-clean, avClient-impl.-do-test-run, avClient-impl.-do-jar-with-libraries-copy-manifest, avClient-impl.compile-single, avClient-impl.-init-macrodef-test-debug-junit, test-single, avClient-impl.-do-debug-fix-test, avClient-impl.-maybe-call-dep, avClient-impl.-init-macrodef-junit-debug-batch, avClient-impl.-do-jar-with-libraries-set-main, avClient-impl.-copy-persistence-xml, avClient-impl.-init-private, avClient-impl.run-applet, avClient-impl.-init-macrodef-testng-impl, avClient-impl.debug, avClient-impl.-do-compile-test-single, ]

-warn-already-built-jar:
Skipped because property ‘already.built.jar./workspace/av/trunk/avClient’ not set.
[antcall] Exiting /workspace/av/trunk/avClient/build.xml.
[propertyfile] Updating property file: /workspace/av/trunk/avClient/build/built-jar.properties

-check-automatic-build:
[available] Unable to find build/classes/.netbeans_automatic_build to set property netbeans.automatic.build

-clean-after-automatic-build:
Skipped because property ‘netbeans.automatic.build’ not set.

-verify-automatic-build:

-pre-pre-compile:
[mkdir] Created dir: /workspace/av/trunk/avClient/build/classes

-pre-compile:

-copy-persistence-xml:
Skipped because property ‘has.persistence.xml’ not set.

-compile-depend:
Skipped because property ‘do.depend.true’ not set.

-do-compile:
[mkdir] Created dir: /workspace/av/trunk/avClient/build/empty
[javac] com/dlabs/av/AVSingletons.java added as com/dlabs/av/AVSingletons.class doesn’t exist.

[javac] com/dlabs/ti3/statemachine/State.java added as com/dlabs/ti3/statemachine/State.class doesn't exist.
[javac] com/dlabs/ti3/statemachine/TextParser.java added as com/dlabs/ti3/statemachine/TextParser.class doesn't exist.
[javac] Compiling 140 source files to /workspace/av/trunk/avClient/build/classes
[javac] Using modern compiler
[javac] Compilation arguments:
[javac] '-d'
[javac] '/workspace/av/trunk/avClient/build/classes'
[javac] '-classpath'
[javac] '/workspace/av/trunk/avClient/build/classes:/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-desktop.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-plugins.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-effects.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jogg.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/j-ogg-oggd.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/j-ogg-vorbisd.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-terrain.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-lwjgl.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-lwjgl-natives.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jinput.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/lwjgl.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jbullet.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jbullet.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/vecmath.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/stack-alloc.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-niftygui.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/eventbus.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/xmlpull-xpp3.jar:/home/pickles/.jmonkeyplatform/3.0/libs/jME3-networking.jar:/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar:/workspace/av/trunk/avClient/resources/nifty-jars/nifty-style-black-1.4.0-SNAPSHOT.jar:/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar:/workspace/av/trunk/avClient/resources/beanshell/bsh-2.1.8.jar'
[javac] '-sourcepath'
[javac] '/workspace/av/trunk/avClient/build/empty'
[javac] '-target'
[javac] '1.5'
[javac] '-encoding'
[javac] 'UTF-8'
[javac] '-g'
[javac] '-verbose'
[javac] '-source'
[javac] '1.5'
[javac] 
[javac] The ' characters around the executable and arguments are
[javac] not part of the command.
[javac] Files to be compiled:
[javac]     /workspace/av/trunk/avClient/src/com/dlabs/av/AVSingletons.java


[javac] [parsing completed 0ms]
[javac] [search path for source files: /workspace/av/trunk/avClient/build/empty]
[javac] [search path for class files: /usr/lib/jvm/java-6-openjdk-amd64/jre/lib/resources.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/rt.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/sunrsasign.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/jsse.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/jce.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/charsets.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/netx.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/plugin.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/rhino.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/modules/jdk.boot.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/classes,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/ext/pulse-java.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/ext/sunpkcs11.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/ext/localedata.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/ext/sunjce_provider.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/ext/java-atk-wrapper.jar,/usr/lib/jvm/java-6-openjdk-amd64/jre/lib/ext/dnsns.jar,/workspace/av/trunk/avClient/build/classes,/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-desktop.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-plugins.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-effects.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jogg.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/j-ogg-oggd.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/j-ogg-vorbisd.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-terrain.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-lwjgl.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-lwjgl-natives.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jinput.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/lwjgl.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jbullet.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jbullet.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/vecmath.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/stack-alloc.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-niftygui.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/eventbus.jar,/usr/local/jmonkeyplatform/jmonkeyplatform/libs/xmlpull-xpp3.jar,/home/pickles/.jmonkeyplatform/3.0/libs/jME3-networking.jar,/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar,/workspace/av/trunk/avClient/resources/nifty-jars/nifty-style-black-1.4.0-SNAPSHOT.jar,/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar,/workspace/av/trunk/avClient/resources/beanshell/bsh-2.1.8.jar]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/app/Application.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/asset/AssetManager.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jbullet.jar(com/jme3/bullet/BulletAppState.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/math/ColorRGBA.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/math/Vector3f.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/renderer/ViewPort.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/Geometry.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/Node.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/Spatial.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/Nifty.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/ArrayList.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/EnumMap.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/HashMap.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/LinkedList.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/List.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/concurrent/Callable.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Object.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Integer.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jbullet.jar(com/jme3/bullet/collision/shapes/CapsuleCollisionShape.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jbullet.jar(com/jme3/bullet/control/CharacterControl.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/material/Material.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/math/FastMath.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/math/Quaternion.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/math/Triangle.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/SceneGraphVisitorAdapter.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/concurrent/ConcurrentLinkedQueue.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/export/Savable.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Cloneable.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/collision/Collidable.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/asset/CloneableSmartAsset.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Short.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/shape/Surface.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/String.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Enum.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Comparable.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/io/Serializable.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/collision/CollisionResult.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/collision/CollisionResults.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/light/AmbientLight.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/post/FilterPostProcessor.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-effects.jar(com/jme3/post/filters/BloomFilter.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/util/SafeArrayList.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/Collection.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/Iterator.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/ListIterator.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/audio/AudioNode.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/app/state/AbstractAppState.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/app/state/AppStateManager.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/math/Ray.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/math/Vector2f.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/EndNotify.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/NiftyEventSubscriber.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/builder/PanelBuilder.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/builder/TextBuilder.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/Button.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/ButtonClickedEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/Chat.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/ChatTextSendEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/Draggable.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/DraggableDragCanceledEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/DraggableDragStartedEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/Droppable.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/DroppableDropFilter.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/DroppableDroppedEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/ListBox.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/ListBoxSelectionChangedEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/ScrollPanel.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/ScrollPanel$AutoScroll.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/TextField.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/dynamic/TextCreator.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/label/builder/CreateLabelControl.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/listbox/ListBoxControl.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/listbox/builder/ListBoxBuilder.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/scrollpanel/ScrollPanelControl.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/scrollpanel/builder/ScrollPanelBuilder.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/textfield/TextFieldControl.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/effects/EffectEventId.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/elements/Element.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/elements/render/TextRenderer.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/input/NiftyStandardInputEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/layout/manager/AbsolutePositionLayout.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/layout/manager/LayoutManager.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/render/NiftyImage.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/screen/Screen.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/screen/ScreenController.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/tools/SizeValue.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/logging/Level.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/logging/Logger.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/app/state/AppState.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/app/SimpleApplication.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/cinematic/MotionPath.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/font/BitmapFont.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/font/BitmapText.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/input/MouseInput.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/input/controls/ActionListener.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/input/controls/AnalogListener.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/input/controls/KeyTrigger.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/input/controls/MouseButtonTrigger.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar(com/jme3/network/Network.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar(com/jme3/network/serializing/Serializer.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-niftygui.jar(com/jme3/niftygui/NiftyJmeDisplay.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/renderer/RenderManager.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/shape/Box.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/shape/Sphere.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/system/AppSettings.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/system/Timer.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-lwjgl.jar(com/jme3/system/lwjgl/LwjglTimer.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/builder/ImageBuilder.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/chatcontrol/builder/ChatBuilder.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/dragndrop/builder/DraggableBuilder.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/io/IOException.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/concurrent/ScheduledThreadPoolExecutor.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/system/SystemListener.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/input/controls/InputListener.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar(com/jme3/network/Client.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar(com/jme3/network/Message.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar(com/jme3/network/MessageListener.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/awt/datatransfer/SystemFlavorMap.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/NiftyIdCreator.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/dynamic/attributes/ControlAttributes.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/dynamic/attributes/ControlEffectsAttributes.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/dynamic/attributes/ControlInteractAttributes.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/loaderv2/types/ControlType.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/loaderv2/types/ElementType.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/xml/xpp3/Attributes.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar(com/jme3/network/AbstractMessage.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/Queue.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/concurrent/ConcurrentHashMap.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/Controller.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/Parameters.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/input/NiftyInputEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/CheckBoxStateChangedEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/Label.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/RadioButtonStateChangedEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar(com/jme3/network/ErrorListener.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Throwable.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/ImageSelectSelectionChangedEvent.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/dynamic/CustomControlCreator.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/EnumSet.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/Map.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jbullet.jar(com/bulletphysics/collision/shapes/TriangleShape.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/bounding/BoundingVolume.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/collision/UnsupportedCollisionException.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/Mesh.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/SceneGraphVisitor.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/VertexBuffer.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/VertexBuffer$Type.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/scene/shape/Line.class)]]
[javac] [loading ZipFileIndexFileObject[/home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar(com/jme3/util/BufferUtils.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar(com/jme3/network/HostedConnection.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar(com/jme3/network/serializing/Serializable.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/builder/ElementBuilder.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/controls/dragndrop/builder/DroppableBuilder.class)]]
[javac] [loading ZipFileIndexFileObject[/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar(de/lessvoid/nifty/builder/EffectBuilder.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Override.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/annotation/Annotation.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/annotation/Retention.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/annotation/RetentionPolicy.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/annotation/Target.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/annotation/ElementType.class)]]
[javac] [checking com.dlabs.av.AVSingletons]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/AbstractMap.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/AbstractList.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/AbstractCollection.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Number.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/System.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/AbstractSequentialList.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Iterable.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Class.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/reflect/GenericDeclaration.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/reflect/Type.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/reflect/AnnotatedElement.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/io/PrintStream.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/io/FilterOutputStream.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/io/OutputStream.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Void.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Exception.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Error.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/RuntimeException.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/util/concurrent/Future.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/CloneNotSupportedException.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/CharSequence.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/NumberFormatException.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/IllegalArgumentException.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Byte.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Character.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Long.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Float.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Double.class)]]
[javac] [loading ZipFileIndexFileObject[/usr/lib/jvm/java-6-openjdk-amd64/lib/ct.sym(META-INF/sym/rt.jar/java/lang/Boolean.class)]]
[javac] [wrote RegularFileObject[/workspace/av/trunk/avClient/build/classes/com/dlabs/av/AVSingletons$1.class]]

[javac] [total 2262ms]
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[copy] com/dlabs/ti3/resources/Babe_Front_Standing.png added as com/dlabs/ti3/resources/Babe_Front_Standing.png doesn’t exist.
[copy] com/dlabs/ti3/resources/FatNPC_Front_Standing.png added as com/dlabs/ti3/resources/FatNPC_Front_Standing.png doesn’t exist.

[copy] Copying /workspace/av/trunk/avClient/src/com/dlabs/ti3/resources/u4wander.au to /workspace/av/trunk/avClient/build/classes/com/dlabs/ti3/resources/u4wander.au

-post-compile:

compile:

-pre-jar:

-pre-pre-jar:
[mkdir] Created dir: /workspace/av/trunk/avClient/dist

-do-jar-with-manifest:
Skipped because property ‘manifest.available+main.class-mkdist.available’ set.

-do-jar-without-manifest:
Skipped because property ‘manifest.available-mkdist.available’ set.

-do-jar-with-mainclass:
Skipped because property ‘manifest.available+main.class+mkdist.available’ set.

-do-jar-with-libraries-create-manifest:
Skipped because property ‘manifest.available’ set.

-do-jar-with-libraries-copy-manifest:
[copy] Copying 1 file to /workspace/av/trunk/avClient/build
[copy] Copying /workspace/av/trunk/avClient/MANIFEST.MF to /workspace/av/trunk/avClient/build/null1765056122

-do-jar-with-libraries-set-main:

-do-jar-with-libraries-set-splashscreen:
Skipped because property ‘do.archive+splashscreen.available’ not set.

-init-macrodef-copylibs:
[macrodef] creating macro http://www.netbeans.org/ns/j2se-project/3:copylibs

-do-jar-with-libraries-pack:
Override ignored for property “build.classes.dir.resolved”
[pathconvert] Set property run.classpath.without.build.classes.dir = /home/pickles/.jmonkeyplatform/3.0/libs/jME3-core.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-desktop.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-plugins.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-effects.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-networking.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jogg.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/j-ogg-oggd.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/j-ogg-vorbisd.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-terrain.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-lwjgl.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-lwjgl-natives.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jinput.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/lwjgl.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-jbullet.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jbullet.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/vecmath.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/stack-alloc.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/jME3-niftygui.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/eventbus.jar:/usr/local/jmonkeyplatform/jmonkeyplatform/libs/xmlpull-xpp3.jar:/home/pickles/.jmonkeyplatform/3.0/libs/jME3-networking.jar:/workspace/av/trunk/avClient/resources/nifty-jars/nifty-default-controls-1.4.0-SNAPSHOT.jar:/workspace/av/trunk/avClient/resources/nifty-jars/nifty-style-black-1.4.0-SNAPSHOT.jar:/workspace/av/trunk/avClient/resources/nifty-jars/nifty-1.4.0-SNAPSHOT.jar:/workspace/av/trunk/avClient/resources/beanshell/bsh-2.1.8.jar::/workspace/av/trunk/avClient/assets
Override ignored for property “run.classpath.without.build.classes.dir”
[pathconvert] Set property jar.classpath = lib/jME3-core.jar lib/jME3-desktop.jar lib/jME3-plugins.jar lib/jME3-effects.jar lib/jME3-networking.jar lib/jME3-jogg.jar lib/j-ogg-oggd.jar lib/j-ogg-vorbisd.jar lib/jME3-terrain.jar lib/jME3-lwjgl.jar lib/jME3-lwjgl-natives.jar lib/jinput.jar lib/lwjgl.jar lib/jME3-jbullet.jar lib/jbullet.jar lib/vecmath.jar lib/stack-alloc.jar lib/jME3-niftygui.jar lib/eventbus.jar lib/xmlpull-xpp3.jar lib/jME3-networking.jar lib/nifty-default-controls-1.4.0-SNAPSHOT.jar lib/nifty-style-black-1.4.0-SNAPSHOT.jar lib/nifty-1.4.0-SNAPSHOT.jar lib/bsh-2.1.8.jar lib/assets.jar
[copylibs] Create lib folder /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy libraries to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-core.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-desktop.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-plugins.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-effects.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-networking.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-jogg.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy j-ogg-oggd.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy j-ogg-vorbisd.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-terrain.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-lwjgl.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-lwjgl-natives.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jinput.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy lwjgl.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-jbullet.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jbullet.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy vecmath.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy stack-alloc.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-niftygui.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy eventbus.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy xmlpull-xpp3.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy jME3-networking.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy nifty-default-controls-1.4.0-SNAPSHOT.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy nifty-style-black-1.4.0-SNAPSHOT.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy nifty-1.4.0-SNAPSHOT.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy bsh-2.1.8.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Copy assets.jar to /workspace/av/trunk/avClient/dist/lib.
[copylibs] Building jar: /workspace/av/trunk/avClient/dist/av.jar
[copylibs] adding directory META-INF/
[copylibs] adding entry META-INF/MANIFEST.MF
[copylibs] adding directory com/

[copylibs] No Implementation-Title set.No Implementation-Version set.No Implementation-Vendor set.
[copylibs] Location: /workspace/av/trunk/avClient/nbproject/build-impl.xml:845:
[echo] To run this application from the command line without Ant, try:
[echo] java -jar “/workspace/av/trunk/avClient/dist/av.jar”

-do-jar-with-libraries-delete-manifest:
[delete] Deleting /workspace/av/trunk/avClient/build/null1765056122

-do-jar-with-libraries:

-post-jar:

-test-linux-launcher-enabled:

-linux-launcher:
[echo] Linux Launcher Creation
[replace] Replacing in /workspace/av/trunk/avClient/av.sh: JVMARGS --> -Xmx1024m
[zip] Building zip: /workspace/av/trunk/avClient/dist/av-Linux.zip
[zip] adding entry av.sh
[zip] adding entry av.jar
[zip] adding directory lib/
[zip] adding entry lib/assets.jar
[zip] adding entry lib/bsh-2.1.8.jar
[zip] adding entry lib/eventbus.jar
[zip] adding entry lib/j-ogg-oggd.jar
[zip] adding entry lib/j-ogg-vorbisd.jar
[zip] adding entry lib/jME3-core.jar
[zip] adding entry lib/jME3-desktop.jar
[zip] adding entry lib/jME3-effects.jar
[zip] adding entry lib/jME3-jbullet.jar
[zip] adding entry lib/jME3-jogg.jar
[zip] adding entry lib/jME3-lwjgl-natives.jar
[zip] adding entry lib/jME3-lwjgl.jar
[zip] adding entry lib/jME3-networking.jar
[zip] adding entry lib/jME3-niftygui.jar
[zip] adding entry lib/jME3-plugins.jar
[zip] adding entry lib/jME3-terrain.jar
[zip] adding entry lib/jbullet.jar
[zip] adding entry lib/jinput.jar
[zip] adding entry lib/lwjgl.jar
[zip] adding entry lib/nifty-1.4.0-SNAPSHOT.jar
[zip] adding entry lib/nifty-default-controls-1.4.0-SNAPSHOT.jar
[zip] adding entry lib/nifty-style-black-1.4.0-SNAPSHOT.jar
[zip] adding entry lib/stack-alloc.jar
[zip] adding entry lib/vecmath.jar
[zip] adding entry lib/xmlpull-xpp3.jar
[delete] Deleting: /workspace/av/trunk/avClient/av.sh

-test-mac-app-enabled:

-mac-app:
[echo] MacOSX Application Creation
[loadresource] loading -Xmx1024m into property jfxdeploy.jvmargs
[loadresource] loaded 9 characters
[copy] Copying 1 file to /workspace/av/trunk/avClient/resources/macapp
[copy] Copying /workspace/av/trunk/avClient/resources/macapp/Info.plist to /workspace/av/trunk/avClient/resources/macapp/_Info.plist
[zip] Building zip: /workspace/av/trunk/avClient/dist/av-MacOSX.zip
[zip] adding directory av.app/
[zip] adding directory av.app/Contents/
[zip] adding directory av.app/Contents/MacOS/
[zip] adding entry av.app/Contents/MacOS/JavaAppLauncher
[zip] adding entry av.app/Contents/Info.plist
[zip] adding directory av.app/Contents/Resources/
[zip] adding entry av.app/Contents/Resources/GenericApp.icns
[zip] adding directory av.app/Contents/Java/
[zip] adding entry av.app/Contents/Java/av.jar
[zip] adding directory av.app/Contents/Java/lib/
[zip] adding entry av.app/Contents/Java/lib/assets.jar
[zip] adding entry av.app/Contents/Java/lib/bsh-2.1.8.jar
[zip] adding entry av.app/Contents/Java/lib/eventbus.jar
[zip] adding entry av.app/Contents/Java/lib/j-ogg-oggd.jar
[zip] adding entry av.app/Contents/Java/lib/j-ogg-vorbisd.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-core.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-desktop.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-effects.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-jbullet.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-jogg.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-lwjgl-natives.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-lwjgl.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-networking.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-niftygui.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-plugins.jar
[zip] adding entry av.app/Contents/Java/lib/jME3-terrain.jar
[zip] adding entry av.app/Contents/Java/lib/jbullet.jar
[zip] adding entry av.app/Contents/Java/lib/jinput.jar
[zip] adding entry av.app/Contents/Java/lib/lwjgl.jar
[zip] adding entry av.app/Contents/Java/lib/nifty-1.4.0-SNAPSHOT.jar
[zip] adding entry av.app/Contents/Java/lib/nifty-default-controls-1.4.0-SNAPSHOT.jar
[zip] adding entry av.app/Contents/Java/lib/nifty-style-black-1.4.0-SNAPSHOT.jar
[zip] adding entry av.app/Contents/Java/lib/stack-alloc.jar
[zip] adding entry av.app/Contents/Java/lib/vecmath.jar
[zip] adding entry av.app/Contents/Java/lib/xmlpull-xpp3.jar
[delete] Deleting: /workspace/av/trunk/avClient/resources/macapp/_Info.plist

-test-launch4j-exe-enabled:

-launch4j-exe:
[echo] Windows EXE Creation
[copy] Copying 1 file to /workspace/av/trunk/avClient
[copy] Copying /workspace/av/trunk/avClient/resources/launch4j/winapp-config.xml to /workspace/av/trunk/avClient/launch4j-config.xml
[launch4j] Compiling resources
[launch4j] Linking
[launch4j] Wrapping
[launch4j] Successfully created /workspace/av/trunk/avClient/dist/av.exe
[delete] Deleting: /workspace/av/trunk/avClient/launch4j-config.xml
[zip] Building zip: /workspace/av/trunk/avClient/dist/av-Windows.zip
[zip] adding entry av.exe
[zip] adding directory lib/
[zip] adding entry lib/assets.jar
[zip] adding entry lib/bsh-2.1.8.jar
[zip] adding entry lib/eventbus.jar
[zip] adding entry lib/j-ogg-oggd.jar
[zip] adding entry lib/j-ogg-vorbisd.jar
[zip] adding entry lib/jME3-core.jar
[zip] adding entry lib/jME3-desktop.jar
[zip] adding entry lib/jME3-effects.jar
[zip] adding entry lib/jME3-jbullet.jar
[zip] adding entry lib/jME3-jogg.jar
[zip] adding entry lib/jME3-lwjgl-natives.jar
[zip] adding entry lib/jME3-lwjgl.jar
[zip] adding entry lib/jME3-networking.jar
[zip] adding entry lib/jME3-niftygui.jar
[zip] adding entry lib/jME3-plugins.jar
[zip] adding entry lib/jME3-terrain.jar
[zip] adding entry lib/jbullet.jar
[zip] adding entry lib/jinput.jar
[zip] adding entry lib/lwjgl.jar
[zip] adding entry lib/nifty-1.4.0-SNAPSHOT.jar
[zip] adding entry lib/nifty-default-controls-1.4.0-SNAPSHOT.jar
[zip] adding entry lib/nifty-style-black-1.4.0-SNAPSHOT.jar
[zip] adding entry lib/stack-alloc.jar
[zip] adding entry lib/vecmath.jar
[zip] adding entry lib/xmlpull-xpp3.jar
[delete] Deleting: /workspace/av/trunk/avClient/dist/av.exe

jar:

BUILD SUCCESSFUL
Total time: 14 seconds
[/java]

Sorry, I meant when running the app.