While running sbt in my java play project, the build gives me the following error:
sbt.librarymanagement.ResolveException: unresolved dependency: com.typesafe.play#sbt-plugin;2.6.7: not found
The configuration files are set up as follows:
plugin.sbt
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.7")
build.properties
sbt.version=1.0.2
build.sbt
scalaVersion := "2.12.3"
// libraryDependencies ..
Two months ago everything was working correctly and now nothing has been changed in the project. Why?