jME on OSX

greetings!

i’d like to test jME for my further developments. currently i’m fiddeling with jogl, waiting for lwjgl to get ready on the mac. and before i start to develop a complete scene-graph myself i’ll check what you guys did already.

monkey says it runs on mac os x out of cvs - it does not for me :-/

running ant gives me this (and a lot more):

[javac] jme/src/com/jme/util/geom/GeometryInfo.java:249: warning: as of release 1.4, assert is a keyword, and may not be used as an identifier
[javac]             assert (pg.length == 1);

assert is java 1.5 (right?). currently i am not working on tiger/tiger but still on panther/1.4. (10.3.6)

monkey, how do you compile the stuff from the cvs?

here’s my root:
:pserver:atze@cvs.dev.java.net:/cvs
repository is jme.
is there another cvs i should use?

That’s the correct repository. Assert is java1.4

What command are you executing at the command prompt to compile the java code?

Yeah, I had the same problem on Windows XP. Find all the “” tags in the build file and add the following 2 attributes to each one.

source="1.4" target="1.4"

The asserts were removed form the cvs a few days ago
.