Lothar Kimmeringer wrote:
> It seems that the path you are refering to is not passed to
> the GWTCompiler in a correct way.
That's right Lothar! thank you very much.
I get it; the target was as follow:
<target name="gwtcompile">
<java classname="com.google.gwt.dev.GWTCompiler" fork="true">
<arg line="-out ${build}/www" />
<arg value="${gwt.module}" />
<classpath refid="gwt.classpath" />
</java>
</target>
and the '${gwt.module}' was as follow:
<property name="gwt.module" value="com.MyCom.client.MyApp" />
I just removed the 'client' from the <property .../> it becomes:
<property name="gwt.module" value="com.MyCom.MyApp" />
and everything goes well :-)
Thanks again.
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---