Created
July 26, 2019 05:03
-
-
Save katzchang/06aa444b9ef6bc30cdf08e4ef8f95bf0 to your computer and use it in GitHub Desktop.
make sbt-shell
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
#SBT:=docker run -p 8080:8080 -v ~/.ivy2:/root/.ivy2 -v ~/.sbt:/root/.sbt -v `pwd`:/workspace -w /workspace -it --rm hseeberger/scala-sbt sbt | |
SBT=./sbt | |
.PHONY: test-continuous sbt-shell sbt-assembly | |
test-continuous: sbt | |
$(SBT) ~test | |
sbt-shell: sbt | |
$(SBT) | |
sbt-assembly: sbt | |
$(SBT) assembly | |
sbt: | |
curl -Ls https://git.io/sbt > $@ && chmod 0755 $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment