Subversion Repositories eFlore/Applications.del

Compare Revisions

Regard whitespace Rev 1444 → Rev 1445

/trunk/src/org/tela_botanica/del/Del-test.gwt.xml
New file
0,0 → 1,6
<?xml version="1.0" encoding="UTF-8"?>
<module rename-to="del">
<inherits name="org.tela_botanica.del.Del" />
<set-property name="user.agent" value="gecko1_8" />
<set-property name="locale" value="default" />
</module>
/trunk/build.properties
New file
0,0 → 1,3
projectName = org.tela_botanica.del.Del
# pour la compilation "rapide" (ant quick)
projectTestName = org.tela_botanica.del.Del-test
/trunk/build.xml
1,5 → 1,30
<project name="del" xmlns:artifact="urn:maven-artifact-ant" basedir=".">
 
<property file="build.properties"/>
 
<path id="gwt">
<fileset includes="*.jar" dir="${user.home}/gwt/build/lib"/>
<fileset includes="cobogw-1.3.2.jar" dir="${user.home}"/>
<pathelement location="src" />
</path>
 
<target name="quick">
<java classname="com.google.gwt.dev.Compiler" fork="true">
<arg line="-style DETAILED -draftCompile ${projectTestName}" />
<classpath refid="gwt"/>
</java>
</target>
 
<target name="compile">
<!-- <java classname="com.google.gwt.dev.GWTCompiler" fork="true"> -->
<java classname="com.google.gwt.dev.Compiler" fork="true">
<arg line="-localWorkers 2 -style DETAILED ${projectName}"/>
<!-- <arg line="-out build/gwtOutput"/> -->
<classpath refid="gwt"/>
</java>
</target>
 
 
<target name="init-local-properties">
<property file="local.properties" />
<property name="gwt-path" value="${gwt-path}" />