Hi guys.

When I compile code with GWT plugin for Eclipse function, directory
"deferred" (with all splitted code) craeted successful. But if I
complile code with ant task, directory "deferred" is not created.

I use the following ant task:
<target name="run.compile.gwt" description="Run GWT compiler"
if="gwt.present">
    <java fork="true" failonerror="true"
classname="com.google.gwt.dev.Compiler">
        <jvmarg line="-Xmx512M"/>
        <classpath>
            <pathelement location="${java.src}"/>
            <path refid="${env.GWT_HOME}"/>
        </classpath>
        <arg value="-logLevel"/>
        <arg value="INFO"/>
        <arg value="-war"/>
        <arg value="${gwt.output.dir}"/>
        <arg value="-style"/>
        <arg value="OBF"/>
        <arg value="${gwt.module.name}"/>
        <arg value="-compileReport" />
    </java>
</target>

${env.GWT_HOME} property is gwt 2.0.1 location. Eclipse plugin use
this gwt location too.

Does anybody can help me? What I do wrong? May be I've forgot set some
gwt compile parameters?


Thanks,
Elena

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to