> That's a shame. Though
>
H, me too :(
--
You received this message because you are subscribed to the Google Groups "GWT
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group
See https://github.com/tbroyer/gwt-maven-archetypes for a simple setup using
the tomcat-maven-plugin.
--
You received this message because you are subscribed to the Google Groups "GWT
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to google-web-to
While I'd still like to know why this isn't working, I worked around the
issue by creating constants:
public interface ColorResources extends CssResource
{
public static String shadowZ0 = Util.getShadow(0);
public static String shadowZ1 = Util.getShadow(1);
public static String sha
Can you like explain a little more about your setup? In our production
environment, our app is hosted by Tomcat, but by default GWT uses Jetty.
There are some discrepancies there, and any Tomcat specific issues are
super hard to debug. We've been trying to move to SDM with Tomcat, but we
ha
I have a method that calculates a box shadow. To use it, I call
getShadow(int depth). If I call this, I get the expected result. Now, I'd
like to create a few predefined constants in GSS. So, I do this:
public interface ColorResources extends CssResource
{
String shadowZ0();
String shado