Subversion Repositories eFlore/Applications.del

Compare Revisions

Regard whitespace Rev 1444 → Rev 1445

/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}" />