-
Notifications
You must be signed in to change notification settings - Fork 189
Showcase fails to compile #387
Comments
I tried: mvn clean install # OK
mvn clean install -Pshowcase # OK
mvn gwt:compile -Pshowcase # another failure No idea what's happening here. @soundTricker, any idea? |
I identified that it's something related to the compiled classes that are copied into the WEB-INF folder of showcase project. |
Let's see a specif case:
Then, when we go to the class definition at line 58 we see the following: 58 @Source("css/showcase.css")
59 Showcase showcase(); But, when we go to the compiled class located at "./src/showcase/webapp/WEB-INF/classes/com/github/gwtbootstrap/showcase/client/resources/CustomResources.java", guess what? 58 @Source("com/github/gwtbootstrap/showcase/client/resources/css/showcase.css")
59 Showcase showcase(); Just like the error says. I suppose that something has been set in order to update the compiled classes. I don't know what. |
Probably GWT "translate" the relative path to the full path... anyway, Somehow, Thanks! |
Just to formalize the issue.
For reproduce the error just execute 'mvn -Pshowcase gwt:compile'.
The text was updated successfully, but these errors were encountered: