Subversion Repositories eFlore/Applications.del

Compare Revisions

Problem with comparison.

Ignore whitespace Rev HEAD → Rev 1

/build.xml
New file
0,0 → 1,32
<project name="del" xmlns:artifact="urn:maven-artifact-ant" basedir=".">
<property name="gwt-path" value="C:/Program Files/Google/gwt/gwt-2.3.0" />
 
<target name="gwt-compile">
<java classname="com.google.gwt.dev.Compiler" fork="true">
<arg line="-logLevel INFO" />
<arg line="-style OBF" />
<arg value="org.tela_botanica.del.Del" />
<classpath>
<path>
<pathelement location="${gwt-path}/gwt-user.jar" />
<pathelement location="${gwt-path}/gwt-dev.jar" />
<pathelement location="${gwt-path}/validation-api-1.0.0.GA-sources.jar" />
<pathelement location="${gwt-path}/validation-api-1.0.0.GA.jar" />
<pathelement location="src" />
<fileset dir="war/WEB-INF/lib">
<include name="**/*.jar" />
<include name="**/*.xml" />
</fileset>
</path>
</classpath>
</java>
</target>
 
<target name="build-and-deploy-test" depends="gwt-compile">
<ftp server="www.tela-botanica.org" remotedir="/www/eflore-test/del/" userid="" password="">
<fileset dir="war" />
</ftp>
</target>
 
</project>