forked from newSue/BikeServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
33 lines (29 loc) · 1.41 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8" ?>
<project name="ccframe" default="compileClient" basedir=".">
<property name="gwtLib" value="${basedir}/gwtlib/gwt-2.6.1"/>
<property name="gxtLib" value="${basedir}/gwtlib/gxt-3.1.1"/>
<property name="guiceLib" value="${basedir}/gwtlib/guice"/>
<target name="compileClient">
<java failonerror="true" fork="true" classname="com.google.gwt.dev.Compiler">
<classpath>
<pathelement location="${basedir}/war/WEB-INF/classes"/>
<pathelement location="${basedir}/src/main/java"/>
<pathelement location="${basedir}/gwtlib/freshbizz.jar"/>
<pathelement location="${basedir}/gwtlib/restygwt-2.0.3.jar"/>
<pathelement location="${basedir}/gwtlib/lib-gwt-file-0.3.5.jar"/>
<fileset dir="${basedir}/war/WEB-INF/lib" includes="*.jar"/>
<fileset dir="${gxtLib}" includes="*.jar"/>
<fileset dir="${gwtLib}" includes="*.jar"/>
<fileset dir="${guiceLib}" includes="*.jar"/>
</classpath>
<jvmarg value="-Xmx1280M"/>
<jvmarg value="-Xms1280M"/>
<arg value="-war"/>
<arg value="war"/>
<arg value="-localWorkers"/>
<arg value="2"/>
<arg value="-strict"/>
<arg value="org.ccframe.client.Client"/>
</java>
</target>
</project>