project/plugins.sbt (7 lines of code) (raw):
logLevel := Level.Warn
libraryDependencies += "org.vafer" % "jdeb" % "1.6" artifacts Artifact("jdeb", "jar", "jar")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-digest" % "1.1.3")
/*
Because scala-xml has not be updated to 2.x in sbt yet but has in sbt-native-packager
See: https://github.com/scala/bug/issues/12632
This effectively overrides the safeguards (early-semver) put in place by the library authors ensuring binary compatibility.
We consider this a safe operation because it only affects the compilation of build.sbt, not of the application build itself
*/
libraryDependencySchemes ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always
)