Skip to content
This repository was archived by the owner on Feb 20, 2019. It is now read-only.

Commit c64d5d6

Browse files
committed
Merge pull request #133 from phaller/topic/build-scala-version
Make Scala version used for build configurable via system property
2 parents 6f2c29b + 8a448c4 commit c64d5d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import java.net.URL
77

88
object BuildSettings {
99
val buildVersion = "0.9.0-SNAPSHOT"
10-
val buildScalaVersion = "2.11.0"
10+
val buildScalaVersion = System.getProperty("scala.version", "2.11.0")
1111

1212
val buildSettings = Defaults.defaultSettings ++ Seq(
1313
version := buildVersion,

0 commit comments

Comments
 (0)