Skip to content

Commit

Permalink
Don't hardcode sbt and scala versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben McCann committed Mar 29, 2016
1 parent 900a6df commit aa0b920
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions project/Build.scala
Expand Up @@ -24,10 +24,10 @@ object NGPluginBuild extends Build {
base = file("plugin"),
settings = commonSettings ++ Seq(
sbtPlugin := true,
libraryDependencies <++= (scalaVersion, sbtVersion) {
case (scalaVersion, sbtVersion) => Seq(
libraryDependencies <++= (scalaBinaryVersion in update, sbtBinaryVersion in update) {
case (scalaBinaryVersion, sbtBinaryVersion) => Seq(
// If changing this, be sure to change in NGPlugin.scala also.
sbtPluginExtra("de.johoop" % "sbt-testng-plugin" % "3.0.2", "0.13", "2.10"),
sbtPluginExtra("de.johoop" % "sbt-testng-plugin" % "3.0.2", sbtBinaryVersion, scalaBinaryVersion),
"de.johoop" %% "sbt-testng-interface" % "3.0.2"
)
}))
Expand Down

0 comments on commit aa0b920

Please sign in to comment.