Upgrade to sbt-buildinfo 0.8.0

This commit is contained in:
Dale Wijnand 2018-02-22 16:48:09 +00:00
parent c7cc52092e
commit edb828a8d7
No known key found for this signature in database
GPG Key ID: 4F256E3D151DF5EF
2 changed files with 6 additions and 5 deletions

View File

@ -456,7 +456,8 @@ lazy val sbtProj = (project in file("sbt"))
addBuildInfoToConfig(Test),
buildInfoObject in Test := "TestBuildInfo",
buildInfoKeys in Test := Seq[BuildInfoKey](
BuildInfoKey.map(fullClasspath in Compile) { case (ident, cp) => ident -> cp.files },
// WORKAROUND https://github.com/sbt/sbt-buildinfo/issues/117
BuildInfoKey.map((fullClasspath in Compile).taskValue) { case (ident, cp) => ident -> cp.files },
),
connectInput in run in Test := true,
outputStrategy in run in Test := Some(StdoutOutput),

View File

@ -1,7 +1,7 @@
scalaVersion := "2.12.4"
scalacOptions ++= Seq("-feature", "-language:postfixOps")
addSbtPlugin("org.scala-sbt" % "sbt-houserules" % "0.3.5")
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.3.2")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "3.0.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.7.0")
addSbtPlugin("org.scala-sbt" % "sbt-houserules" % "0.3.5")
addSbtPlugin("org.scala-sbt" % "sbt-contraband" % "0.3.2")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "3.0.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.8.0")