Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Upgrading project to version 2.2.0 of the Play Framework

When upgrading a play project to 2.2.0 the following error comes up:

sbt.ResolveException: unresolved dependency: play#sbt-plugin;2.2.0: not found
like image 437
Donovan Avatar asked Sep 27 '13 07:09

Donovan


2 Answers

Edit the following line in project/plugin.sbt:

addSbtPlugin("play" % "sbt-plugin" % "2.2.0")

to

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.2.0")

Make sure you have the correct version of sbt in build.properties:

sbt.version=0.13.0
like image 109
EECOLOR Avatar answered Oct 17 '22 07:10

EECOLOR


There are even more things, that you need to do to upgrade your application: Play 2.2 migration guide

like image 36
Joscha Avatar answered Oct 17 '22 06:10

Joscha