设置 Ant 构建路径

发布于 2024-12-04 12:50:55 字数 1563 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文