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

Make Scala version used for build configurable via system property #133

Merged
merged 1 commit into from
May 19, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import java.net.URL

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

val buildSettings = Defaults.defaultSettings ++ Seq(
version := buildVersion,
Expand Down