Created
October 21, 2014 08:29
-
-
Save bigwheel/a48f65f75319804f37f2 to your computer and use it in GitHub Desktop.
sbtでカスタムタスクを定義する方法
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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