I tried to put this in a comment, but it was unreadable.
Thanks, zeppaman. This problem seems to be related to the launch of the Play Framework project, which was created in the old version of Play. After studying another project that made the transition to a new version of the game, I made the following changes.
In build.properties:
sbt.version=0.12.2
become:
sbt.version=0.13.0
In plugins.sbt:
addSbtPlugin("play" % "sbt-plugin" % "2.1.1")
became:
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.2.2")
This allowed me to get the update and then throw errors:
[error] Modules were resolved with conflicting cross-version suffixes in {file:/Users/michaelrichardson/Documents/Play/play21-osm/}play21-osm: [error] org.scala-stm:scala-stm _2.10, _2.10.0 [trace] Stack trace suppressed: run last *:update for the full output. [error] (*:update) Conflicting cross-version suffixes in: org.scala-stm:scala-stm
I am changing the line in Build.scala:
"com.typesafe.play" %% "play-slick" % "0.3.2"
became:
"com.typesafe.play" %% "play-slick" % "0.5.0.2-SNAPSHOT"
EXTRA: This changes the error to:
[info] Resolving com.typesafe.play#play-slick_2.10;0.5.0.2-SNAPSHOT ... [warn] module not found: com.typesafe.play#play-slick_2.10;0.5.0.2-SNAPSHOT [warn] ==== Typesafe Releases Repository: tried [warn] http:
UPDATE: Resolved unresolved dependency
The unresolved dependency problem seems that this could be due to damage to the local sbt / ivy repositories. See unresolved dependency: com.typesafe.play # play-slick_2.10; 0.6.0.1: not found
Michael richardson
source share