On 13 nov, 06:32, Ryan <[EMAIL PROTECTED]> wrote: > > I keep getting this error when I try to compile my gwt application. > i.e. by using the app-compile.cmd command line option. > > Loading inherited module 'org.zenika.widget.DatePickerModule?' > > ERROR? Unable to find 'org/zenika/widget/ > DatePickerModule?.gwt.xml' on your classpath; could be a typo, or > maybe you forgot to include a classpath entry for source? > > I have inherited DatePicker? in my apps gwt.xml > > <inherits name="org.zenika.widget.DatePickerModule" /> > > In my classpath I have date picker entry <classpathentry kind="lib" > path="lib/gwt-datepicker-r29.jar"/>
This looks like the ".classpath" file for an *Eclipse* project; that's totally unrelated to a app-compile.cmd. Open the app-compile.cmd in Notepad (right-click -> edit) and add %~dp0\lib\gwt-datepicker-r29.jar to the -cp argument value (generally just after %~dp0\src;%~dp0\bin). > At the same time when I use the compile and browse option it works > fine. This means the GWTShell is correctly launched with the JAR in the classpath. If you're using a *.launch file in Eclipse, that's thanks to your change in the .classpath file. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
