Subversion Repositories eFlore/Applications.del

Rev

Rev 2 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 aurelien 1
<project name="del" xmlns:artifact="urn:maven-artifact-ant" basedir=".">
2
 
3
	<property name="gwt-path" value="C:/Program Files/Google/gwt/gwt-2.3.0" />
4
 
5
	<target name="gwt-compile">
6
		<java classname="com.google.gwt.dev.Compiler" fork="true">
7
			<arg line="-logLevel INFO" />
8
			<arg line="-style OBF" />
9
			<arg value="org.tela_botanica.del.Del" />
10
			<classpath>
11
				<path>
12
					<pathelement location="${gwt-path}/gwt-user.jar" />
13
					<pathelement location="${gwt-path}/gwt-dev.jar" />
14
					<pathelement location="${gwt-path}/validation-api-1.0.0.GA-sources.jar" />
15
					<pathelement location="${gwt-path}/validation-api-1.0.0.GA.jar" />
16
					<pathelement location="src" />
17
					<fileset dir="war/WEB-INF/lib">
18
						<include name="**/*.jar" />
19
						<include name="**/*.xml" />
20
					</fileset>
21
				</path>
22
			</classpath>
23
		</java>
24
	</target>
25
 
26
	<target name="build-and-deploy-test" depends="gwt-compile">
27
		<ftp server="www.tela-botanica.org" remotedir="/www/eflore-test/del/" userid="" password="">
28
			<fileset dir="war" />
29
		</ftp>
30
	</target>
31
 
32
</project>