我正在使用ant for build gwt app。
以下代码是ant配置。我希望将构建的文件(nocache.js等)放在C:\ WebServers \ home \ tcl.lc \ www \
现在它建立了战争wolder。
<project name="MyProject" default="gwtc" basedir=".">
<property name="build.dir" value="C:\WebServers\home\tcl.lc\www\"/>
<property name="src.dir" value="src"/>
<path id="compile.classpath">
<fileset dir="C:\gwt-2.2.0" includes="*.jar"/>
</path>
<target name="hosted" description="Starts gwt project in a standalone hosted browser and runs embedded jetty on port 8888">
<java failonerror="true" fork="true" classname="com.google.gwt.dev.HostedMode">
<classpath>
<pathelement location="${src.dir}"/>
<path refid="compile.classpath"/>
</classpath>
<jvmarg value="-Xms256M"/>
<jvmarg value="-Xmx256M"/>
<arg value="-startupUrl"/>
<arg value="index.html"/>
<arg value="com.typingApplication.TypingApplication"/>
</java>
</target>
<target name="gwtc" description="GWT compile to JavaScript">
<java failonerror="true" fork="true" classname="com.google.gwt.dev.Compiler">
<classpath>
<pathelement location="${src.dir}"/>
<path refid="compile.classpath"/>
</classpath>
<jvmarg value="-Xmx256M"/>
<arg value="com.typingApplication.TypingApplication"/>
</java>
</target>
答案 0 :(得分:0)
请参阅http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#DevGuideCompilerOptions(和http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#What_options_can_be_passed_to_development_mode了解DevMode)
简而言之,将这些添加到目标的java任务中:
<arg value="-war" />
<arg value="${build.dir}" />