设置 Ant 构建路径
我正在使用 ant 构建 gwt 应用程序。
以下代码是ant配置。我希望将构建的文件(nocache.js 等)放置到 C:\WebServers\home\tcl.lc\www\
现在它构建为 war wlder。
<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>
I am using ant for build gwt app.
following code is ant config. I want that the built files(nocache.js etc) is be placed to C:\WebServers\home\tcl.lc\www\
now it builds to war 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 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 for the DevMode)
简而言之,将这些添加到您的目标的java任务:
See http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#DevGuideCompilerOptions (and http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#What_options_can_be_passed_to_development_mode for the DevMode)
in short, add these to your targets' java tasks: