11 pjaol 1.1 ====================================================================== -->
12 <project name="GWTAntTask" default="default">
13 <description>
14 First pass of Ant tasks for GWT
15 </description>
16
17 <taskdef resource="GWTAntTasks.properties" classpath="deploy/ant-gwt-tasksdefs.jar"/>
18 <!-- =================================
19 target: default
20 ================================= -->
21 <target name="default" depends="depends" description="--> First pass of Ant tasks for GWT">
22
23 </target>
24
25 <!-- - - - - - - - - - - - - - - - - -
26 target: depends
27 - - - - - - - - - - - - - - - - - -->
28 <target name="depends">
29 <gwtcompile src="src" out="www" module="com.pjaol.test" loglevel="error"/>
30 </target>
31
32 pjaol 1.1 </project>
|