@@ -45,12 +45,11 @@
<target name="libs" description="Copy libs to WEB-INF/lib" depends="clean">
<icepush.gwt.available/>
<mkdir dir="war/WEB-INF/lib" />
- <copy todir="war/WEB-INF/lib" file="${gwt.sdk}/gwt-servlet.jar" />
- <!-- Add any additional server libs that need to be copied -->
<copy todir="war/WEB-INF/lib">
+ <fileset file="${gwt.sdk}/gwt-servlet.jar"/>
<fileset refid="icepush.dist"/>
+ <fileset file="${root.offset}/integration/gwt/core/dist/icepush-gwt.jar"/>
</copy>
- <copy todir="war/WEB-INF/lib" file="${root.offset}/integration/gwt/core/dist/icepush-gwt.jar" />
</target>
<target name="javac" depends="libs" description="Compile java source">
|