Skip to content

Commit

Permalink
Revert "Sbt 0.13.15 -> 1.2.6."
Browse files Browse the repository at this point in the history
This reverts commit c837620
  • Loading branch information
erikvanoosten committed Nov 28, 2018
1 parent c837620 commit 184e067
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 1 addition & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ import sbt.Keys._

lazy val baseVersion = "3.5.9"

lazy val akkaVersion = settingKey[String]("Version of Akka compiled against")
akkaVersion := "2.3.0"

// See crossrelease.sh for valid combinations of akkaVersion and crossScalaVersion.

// Developed against 2.3.* (2.4.* for scala 2.12), see crossrelease.sh for all tested and build versions.
Expand All @@ -27,7 +24,7 @@ version := {
description := {
val av = akkaVersion.value
val akkaDescription = if (av.nonEmpty) "Akka " + av +" and " else ""
"metrics-scala for " + akkaDescription + "Scala " + CrossVersion.binaryScalaVersion(scalaVersion.value)
"metrics-scala for " + akkaDescription + "Scala " + sbt.cross.CrossVersionUtil.binaryScalaVersion(scalaVersion.value)
}

// Developed against 2.11, see crossrelease.sh for all tested and build versions.
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.2.6
sbt.version=0.13.15
8 changes: 8 additions & 0 deletions project/build.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import sbt._
import Keys._

object MetricsScalaBuild extends Build {
lazy val akkaVersion = settingKey[String]("Version of Akka compiled against")

akkaVersion := "2.3.0"
}

0 comments on commit 184e067

Please sign in to comment.