There is a project in Scala for Play 2.0. I've met a known bug with bonecp 0.7.1 database connections and want to upgrade this library to version 0.8.0. In file /project/plugins.sbt I've added the following:
resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
libraryDependencies += "com.jolbox" % "bonecp" % "0.8.0-rc2-SNAPSHOT"
But after compilation and distrib building I get an archive with bonecp 0.7.1 in it. What should I do to make Play Framework use bonecp 0.8.0?