Skip to content
This repository was archived by the owner on Aug 5, 2019. It is now read-only.

Showcase fails to compile #387

Open
reinert opened this issue Jun 20, 2013 · 4 comments
Open

Showcase fails to compile #387

reinert opened this issue Jun 20, 2013 · 4 comments

Comments

@reinert
Copy link
Contributor

reinert commented Jun 20, 2013

Just to formalize the issue.

For reproduce the error just execute 'mvn -Pshowcase gwt:compile'.

@caarlos0
Copy link
Contributor

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?

@reinert
Copy link
Contributor Author

reinert commented Jun 20, 2013

I identified that it's something related to the compiled classes that are copied into the WEB-INF folder of showcase project.

@reinert
Copy link
Contributor Author

reinert commented Jun 20, 2013

Let's see a specif case:

[INFO]       [ERROR] Line 77:  Failed to resolve 'com.github.gwtbootstrap.showcase.client.resources.CustomResources' via deferred binding
[INFO]    Scanning for additional dependencies: file:/media/Windows/Users/Danilo/Projects/gwtbootstrap/gwt-bootstrap/src/showcase/webapp/WEB-INF/classes/com/github/gwtbootstrap/showcase/client/resources/CustomResources.java
[INFO]       Computing all possible rebind results for 'com.github.gwtbootstrap.showcase.client.resources.CustomResources'
[INFO]          Rebinding com.github.gwtbootstrap.showcase.client.resources.CustomResources
...
[INFO]                      [ERROR] Resource com/github/gwtbootstrap/showcase/client/resources/css/showcase.css not found. Is the name specified as Class.getResource() would expect?

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.

@caarlos0
Copy link
Contributor

Probably GWT "translate" the relative path to the full path... anyway,
there is no src/showcase/java/com/github/gwtbootstrap/showcase/client/resources/showcase.css.

Somehow, showcase.css file is in src/showcase/webapp/showcase.css. Can
you try to move it, since I can't reproduce exactly the same error here?

Thanks!

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

2 participants