I got this to run below and it allows the project to move foward, but I 
still have a few bugs in my code. Thanks to the comments above!

My latest notes are 
here: http://code.google.com/p/gwt-examples/wiki/DemoRequestFactory

#!/bin/sh
# made by Brandon Donnelson
# http://gwt-examples.googlecode.com

# Project Path to Web-inf folder (with no trailing /)
BASE="/Users/branflake2267/Documents/workspace/DemoRequestFactory/war/WEB-INF";

#----------------------------
# don't have to edit below

OUTPUT="$BASE/classes";

CP="";
CP="$CP$BASE/classes:";
CP="$CP$BASE/lib/*:"; # '*' will only work with java 1.6+

# these need to be in there
#CP="$CP$BASE/lib/requestfactory-apt.jar:";
#CP="$CP$BASE/lib/requestfactory-server+src.jar:";

echo "DEBUG ClassPath: $CP";

java -cp $CP com.google.web.bindery.requestfactory.apt.ValidationTool $OUTPUT \
  org.gonevertical.client.requestfactory.ApplicationRequestFactory 
  

# the end
exit;

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/ZGtqonWUbr8J.
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