Skip to content

Instantly share code, notes, and snippets.

@mocyuto
Created February 5, 2016 10:52
Show Gist options
  • Save mocyuto/56f12296b990607382a8 to your computer and use it in GitHub Desktop.
Save mocyuto/56f12296b990607382a8 to your computer and use it in GitHub Desktop.
create task
lazy val hello = taskKey[Unit]("say hello to you")
lazy val root = (project in file("."))
.settings(
hello := {println("Hello")}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment