查看GWT ANT编译的更多错误信息

时间:2014-04-08 13:40:52

标签: gwt ant

我正在努力让一个ANT构建为GWT工作。我的构建失败,基本上没有信息 -

  

[echo-update](08:27:26)编译gwtp ...

     

[echo-update](08:27:30)项目gwtp已更新。

     

[echo-update](08:27:43)构建gwt-all

     

建立失败   c:\ git \ psuite \ build \ build-gwt.xml:92:执行此行时发生以下错误:

     

c:\ git \ psuite \ build \ build-gwt.xml:72:Java返回:1

java构建部分很好,没有错误或在eclipse中,但从java到javascript的构建失败,基本上没有错误消息。我能做些什么来增加产量吗?这是ANT构建失败的部分。

<macrodef name="gwt-compile-js" description="compiles java to javascript">
    <attribute name="module"/>
    <sequential>
        <property name="gwt.args" value="-style ${gwt.compiler.style} -logLevel ${gwt.compiler.loglevel} -compileReport -XsoycDetailed -XdisableCastChecking"/>
        <java classname="com.google.gwt.dev.Compiler" failonerror="true" fork="true">
            <classpath>
                <pathelement location="${gwt.src.dir}"/>
                <path refid="gwt.project.class.path"/>
            </classpath>
            <jvmarg value="${gwt.compiler.jvmargs}"/>
            <arg line="-war"/>
            <arg value="${gwt.deploy.dir}"/>
            <arg line="-localWorkers ${gwt.compiler.localworkers}"/>
            <arg line="${gwt.args}"/>
            <arg line="@{module}"/>
        </java>
    </sequential>
</macrodef>

日志级别设置为ALL,样式为OBF。

感谢您的帮助!

0 个答案:

没有答案