Created
February 23, 2015 20:33
-
-
Save bpholt/441d87cb9592521cef43 to your computer and use it in GitHub Desktop.
SBT Pipeline
This file contains hidden or 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
lazy val pipeline = TaskKey[Unit]("pipeline", "Runs the full build pipeline: compile, test, integration tests") | |
pipeline <<= (test in IntegrationTest).dependsOn(test in Test) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment