Hi everyone, I'm getting the following error,
(AssetSourceImpl.java:188) - Packaging of classpath assets has changed in
release 5.4; Assets should no longer be on the main classpath, but should
be moved to 'META-INF/assets/' or a sub-folder. Future releases of Tapestry
may no longer support assets
Put your layout.css into META-INF/assets/css
and call it via
@Import(stylesheet = {"css/layout.css"})
thats all
2014-05-08 15:10 GMT+02:00 George Christman :
> Hi everyone, I'm getting the following error,
>
> (AssetSourceImpl.java:188) - Packaging of classpath assets has changed in
> release
Hi everyone, I'm getting the following error,
(AssetSourceImpl.java:188) - Packaging of classpath assets has changed in
release 5.4; Assets should no longer be on the main classpath, but should
be moved to 'META-INF/assets/' or a sub-folder. Future releases of Tapestry
may no longer support assets
Hi everyone, I'm getting the following error,
(AssetSourceImpl.java:188) - Packaging of classpath assets has changed in
release 5.4; Assets should no longer be on the main classpath, but should
be moved to 'META-INF/assets/' or a sub-folder. Future releases of Tapestry
may no longer support assets
Thanks Michael, works good.
On Sun, May 11, 2014 at 9:22 AM, Michael Gentry wrote:
> Hi George,
>
> You can put your CSS/Less files in:
>
> src/main/resources/META-INF/assets/css
>
> and then import them with:
>
> @Import(stylesheet="css/filename.css")
>
> (or .less)
>
> mrg
>
>
>
> On Wed, May
Hi George,
You can put your CSS/Less files in:
src/main/resources/META-INF/assets/css
and then import them with:
@Import(stylesheet="css/filename.css")
(or .less)
mrg
On Wed, May 7, 2014 at 1:48 PM, George Christman wrote:
> Hi everyone, I'm getting the following error,
>
> (AssetSourceIm