Skip to content

Commit

Permalink
Need VersionKeys in keys.scala to set from command line
Browse files Browse the repository at this point in the history
  • Loading branch information
adriaanm committed Feb 27, 2014
1 parent c88b0b3 commit 8a5fbb0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
7 changes: 2 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
scalaModuleSettings

// To facilitate scripted build of all modules (while we're working on getting dbuild up and running)
val scalaXmlVersion = sbt.settingKey[String]("Version to use for the scala-xml dependency.")
import VersionKeys._

val scalaCheckVersion = sbt.settingKey[String]("Version to use for the scalacheck dependency.")
scalaModuleSettings

name := "scala-partest"

Expand Down
7 changes: 7 additions & 0 deletions project/keys.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
object VersionKeys {
import sbt.settingKey

// To facilitate scripted build of all modules (while we're working on getting dbuild up and running)
val scalaXmlVersion = settingKey[String]("Version to use for the scala-xml dependency.")
val scalaCheckVersion = settingKey[String]("Version to use for the scalacheck dependency.")
}

0 comments on commit 8a5fbb0

Please sign in to comment.