Skip to content

Commit

Permalink
Add temporary tasks to mock the sbt release plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
jvican committed Oct 13, 2016
1 parent 87c225c commit 917656e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,21 @@ version := "1.0"
scalaVersion := "2.11.8"

libraryDependencies += "org.scalatest" % "scalatest_2.11" % "3.0.0" % "test"

// add temporary task until the sbt release plugin is ready
lazy val releaseNightly = taskKey[Unit]("releaseNightly")
releaseNightly := {
println("success")
}

// add temporary task until the sbt release plugin is ready
lazy val releaseBeta = taskKey[Unit]("releaseBeta")
releaseBeta := {
println("success")
}

// add temporary task until the sbt release plugin is ready
lazy val releaseStable = taskKey[Unit]("releaseStable")
releaseStable := {
println("success")
}

0 comments on commit 917656e

Please sign in to comment.