Skip to content
This repository was archived by the owner on Sep 8, 2022. It is now read-only.

Commit 8a5fbb0

Browse files
committed
Need VersionKeys in keys.scala to set from command line
1 parent c88b0b3 commit 8a5fbb0

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

build.sbt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
scalaModuleSettings
2-
3-
// To facilitate scripted build of all modules (while we're working on getting dbuild up and running)
4-
val scalaXmlVersion = sbt.settingKey[String]("Version to use for the scala-xml dependency.")
1+
import VersionKeys._
52

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

85
name := "scala-partest"
96

project/keys.scala

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
object VersionKeys {
2+
import sbt.settingKey
3+
4+
// To facilitate scripted build of all modules (while we're working on getting dbuild up and running)
5+
val scalaXmlVersion = settingKey[String]("Version to use for the scala-xml dependency.")
6+
val scalaCheckVersion = settingKey[String]("Version to use for the scalacheck dependency.")
7+
}

0 commit comments

Comments
 (0)