设置Ant构建路径

时间:2011-09-13 07:02:29

标签: gwt ant

我正在使用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>

1 个答案:

答案 0 :(得分:0)