Skip to content

Instantly share code, notes, and snippets.

@dcsobral
Created March 25, 2015 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcsobral/8aad1d7a7a4d4c98b7db to your computer and use it in GitHub Desktop.
Save dcsobral/8aad1d7a7a4d4c98b7db to your computer and use it in GitHub Desktop.
import sbt._
import Keys._
object SinksBuild extends Build {
// Custom keys -- things don't work well if they are on .sbt files
lazy val scalazVersion = settingKey[String]("Scalaz Version")
lazy val scodecVersion = settingKey[String]("Scodec Version")
lazy val unfilteredVersion = settingKey[String]("Unfiltered Version")
lazy val scalacheckVersion = settingKey[String]("Scalacheck Version")
lazy val specs2Version = settingKey[String]("Specs2 Version")
lazy val tempDirectory = taskKey[File]("Sets target.temp.directory Java property. Creates the directory if needed.")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment