I get the following error when i try to run GWTTestCase within eclipse or even from command line. The smartgwt jars are already in the classpath.
[ERROR] Unable to find 'isomorphic.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
The development shell servlet received a request for 'skins/Enterprise/skin_styles.css' in module 'isomorphic.gwt.xml'
[ERROR] Unable to find 'isomorphic.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
[WARN] CSS error: null [1:22] Error in style rule. Invalid token "skins/Enterprise/skin_styles.css\' in the public path of module \'isomorphic". Was expecting one of: <S>, <LBRACE>, <COMMA>, <PLUS>, <GREATER>, <IDENT>, "*", <HASH>, ".", "[", ":".
[WARN] CSS warning: null [1:22] Ignoring the following declarations in this rule.
I am using GWT 2.0.4 with SmartGwt 2.2.
Tried both "gwt-maven-plugin" as well as "gwt plugin for eclipse" but this error is consistent in these two environments.
Here is how my module xml looks like;
<module>
<inherits name="com.google.gwt.user.User"/>
<inherits name="com.smartgwt.SmartGwt"/>
<entry-point class="com.arrisi.gwt.sample.stockwatcher.StockWatcher.client.StockWatcher"/>
</module>
Also tried to follow instructions posted in gwt websites, like
http://code.google.com/webtoolkit/tools/gwtdesigner/wizards/gwt/junit_testcase.html
[ERROR] Unable to find 'isomorphic.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
The development shell servlet received a request for 'skins/Enterprise/skin_styles.css' in module 'isomorphic.gwt.xml'
[ERROR] Unable to find 'isomorphic.gwt.xml' on your classpath; could be a typo, or maybe you forgot to include a classpath entry for source?
[WARN] CSS error: null [1:22] Error in style rule. Invalid token "skins/Enterprise/skin_styles.css\' in the public path of module \'isomorphic". Was expecting one of: <S>, <LBRACE>, <COMMA>, <PLUS>, <GREATER>, <IDENT>, "*", <HASH>, ".", "[", ":".
[WARN] CSS warning: null [1:22] Ignoring the following declarations in this rule.
I am using GWT 2.0.4 with SmartGwt 2.2.
Tried both "gwt-maven-plugin" as well as "gwt plugin for eclipse" but this error is consistent in these two environments.
Here is how my module xml looks like;
<module>
<inherits name="com.google.gwt.user.User"/>
<inherits name="com.smartgwt.SmartGwt"/>
<entry-point class="com.arrisi.gwt.sample.stockwatcher.StockWatcher.client.StockWatcher"/>
</module>
Also tried to follow instructions posted in gwt websites, like
http://code.google.com/webtoolkit/tools/gwtdesigner/wizards/gwt/junit_testcase.html
Comment