Fixed distributions jars to (mostly) match 1.2.22.


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@145 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/build.xml b/dev/core/build.xml
index d2c8d1e..63beddb 100755
--- a/dev/core/build.xml
+++ b/dev/core/build.xml
@@ -6,7 +6,6 @@
 	<target name="unjar.deps" description="Unzips all dependency jars into the output folder">
 		<gwt.unjar toollib="apache/tapestry-util-text-4.0.2.jar" />
 		<gwt.unjar toollib="eclipse/jdt-3.1.1.jar" />
-		<gwt.unjar toollib="junit/junit-3.8.1.jar" />
 		<gwt.unjar toollib="apache/ant-1.6.1.jar" />
 		<gwt.unjar toollib="tomcat/ant-launcher-1.6.5.jar" />
 		<gwt.unjar toollib="tomcat/catalina-1.0.jar" />
diff --git a/user/build.xml b/user/build.xml
index 3a179ef..1995f77 100755
--- a/user/build.xml
+++ b/user/build.xml
@@ -9,7 +9,7 @@
 	<fileset id="default.hosted.tests" dir="${javac.junit.out}">
 		<!--
 			Causes a security dialog to popup and subsequently blocks testing
-	    -->
+		-->
 		<exclude name="com/google/gwt/user/client/ui/FormPanelTest.class" />
 
 		<!--
@@ -68,7 +68,11 @@
 	<!-- Platform shouldn't matter here, just picking one -->
 	<property.ensure name="gwt.dev.jar" location="${gwt.build.lib}/gwt-dev-linux.jar" />
 
-	<target name="compile" description="Compile all class files">
+	<target name="unjar.deps" description="Unzips all dependency jars into the output folder">
+		<gwt.unjar toollib="tomcat/servlet-api-2.4.jar" />
+	</target>
+
+	<target name="compile" depends="unjar.deps" description="Compile all class files">
 		<mkdir dir="${javac.out}" />
 		<gwt.javac>
 			<classpath>
@@ -100,6 +104,7 @@
 			<fileset dir="src" />
 			<fileset dir="super" />
 			<fileset dir="${javac.out}" />
+			<fileset dir="${unjar.out}" />
 		</gwt.jar>
 	</target>