gwt 1.7从ant构建文件编译

时间:2009-11-03 14:48:33

标签: gwt ant

我需要从我的ant构建文件中编译我的GWT 1.7项目....任何人都知道如何做到这一点???

我能够在我的ant文件中使用以下代码在GWT 1.5中执行此操作:

<target name="compile">
   <exec executable="${root.dir}/HelloWorld-compile.cmd"  failonerror="true"/>

1 个答案:

答案 0 :(得分:7)

这里有一些我用来在托管模式下运行并使用gwt 1.7.1进行编译的ant目标。

<property name="src.dir" value="src/main/java" />
<property name="build.dir" value="war" />

<path id="compile.classpath">
        <fileset dir="${build.dir}/WEB-INF/lib">
            <include name="**/*.jar" />
            <include name="**/*.xml" />
        </fileset>
    </path>

<target name="hosted" depends="javac" 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.gwt-example.ModuleName" />
            </java>
        </target>

<target name="gwtc" depends="javac" 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.gwt-example.ModuleName" />
            </java>
        </target>
相关问题