Added simple Jetty launching.

git-svn-id: https://google-web-toolkit.googlecode.com/svn/releases/1.6@3749 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/eclipse/samples/DynaTable2/build.xml b/eclipse/samples/DynaTable2/build.xml
index 67ab747..c0b01e3 100644
--- a/eclipse/samples/DynaTable2/build.xml
+++ b/eclipse/samples/DynaTable2/build.xml
@@ -46,6 +46,18 @@
     </java>
   </target>
 
+  <target name="server" depends="deploy" description="Run the deployed app in a Jetty server">
+    <echo message="PLEASE BROWSE TO: http://localhost:8888/DynaTable.html"/>
+    <java classname="org.mortbay.jetty.Main" fork="yes">
+      <arg value="8888" />
+      <arg value="-webapp" />
+      <arg file="war" />
+      <classpath>
+        <pathelement location="jetty-6.1.11.jar" />
+      </classpath>
+    </java>
+  </target>
+
   <target name="build" depends="javac, gwtc, deploy" description="Build this project" />
 
   <target name="clean" description="Cleans this project's intermediate and output files">
diff --git a/eclipse/samples/DynaTable2/jetty-6.1.11.jar b/eclipse/samples/DynaTable2/jetty-6.1.11.jar
new file mode 100644
index 0000000..a22d544
--- /dev/null
+++ b/eclipse/samples/DynaTable2/jetty-6.1.11.jar
Binary files differ