Fixing LogExample and DynaTableRf for distro builds. The samples were being compiled, but they weren't included in the eclipse.generate target. We also now include json.jar and validation-api-1.0.0.GA.jar in gwt-servlet.jar. And for DynaTableRf (and Validation), we copy other jars into the WEB-INF/lib folder of the sample. Review at http://gwt-code-reviews.appspot.com/964802 Review by: robertvawter@google.com git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@8972 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/servlet/build.xml b/servlet/build.xml index 11aa99d..6440445 100755 --- a/servlet/build.xml +++ b/servlet/build.xml
@@ -21,6 +21,9 @@ <exclude name="com/google/gwt/junit/server/**" /> <exclude name="com/google/gwt/benchmarks/*" /> </fileset> + <!-- The following two jars satisfy RequestFactory dependencies. --> + <zipfileset src="${gwt.tools.redist}/json/r2_20080312/json-1.5.jar" /> + <zipfileset src="${gwt.tools.lib}/javax/validation/validation-api-1.0.0.GA.jar" /> </gwt.jar> </target>