This is my current setup...

src/
com
acme
Model.gwt.xml 
model
token
Token.java
...
test/
super
com
acme
jre
java
lang
CloneNotSupportedException.java (introducing class since GWT doesnt support 
it)
google 
gwt
emul
java
lang
Character.java (added a method that GWT doesn't support)

the super source path in Model.gwt.xml

is

<super-source path="jre"/>


when I compile, the compiler complains about errors in both

Token.java 
isWhitespace(char) is undefined for the type Character
No source code is available for type java.lang.CloneNotSupportedException;

It appears its not picking up the things I emulated.

I have tried taking "jre" folder in to src/com/acme/, ie literally in the 
same level has the module xml. But doesnt work

I am using gwt-maven-plugin to compile and my pom.xml excerpt is

What am I doing wrong here?

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to