Skip to content

Instantly share code, notes, and snippets.

@bigwheel
Created October 21, 2014 08:29
Show Gist options
  • Save bigwheel/a48f65f75319804f37f2 to your computer and use it in GitHub Desktop.
Save bigwheel/a48f65f75319804f37f2 to your computer and use it in GitHub Desktop.
sbtでカスタムタスクを定義する方法
val scoobiRun = taskKey[Int]("A sample int task.")
scoobiRun := {
(compile in Compile).value
println(1)
1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment