Hi I was having this problem with an unresolved dependency:
sbt.ResolveException: unresolved dependency: play#sbt-plugin;2.2.0: not found
and then I found the solution here: Upgrading project to version 2.2.0 of the Play Framework
I followed the steps now when I compile or run play there are not errors but when I load the webpage I'm working with it can't find some of the files in /assets/css. After all the changes proposed on the solution I use the command clean
, but still the same problem [Status Code:404 Not Found].
This is how I call the files in assets:
> layout.scala.html
<link rel="stylesheet" href="@routes.Assets.at("css/layout.min.css")" type="text/css">
<link rel="stylesheet" href="@routes.Assets.at("css/style.min.css")" type="text/css">
<link rel="stylesheet" href="@routes.Assets.at("css/blocks.min.css")" type="text/css">
I'm using play 2.2.0. Any idea about how to solve it? Thanks