Last active
August 29, 2015 13:57
-
-
Save scullxbones/9713171 to your computer and use it in GitHub Desktop.
## A driver script for metrics-scala
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
| #!/bin/bash | |
| CMD=$1 | |
| sbt "set akkaVersion := \"2.1.4\"" +$CMD "set akkaVersion := \"2.2.4\"" +$CMD "set akkaVersion := \"2.3.0\"" +$CMD |
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
| Per http://stackoverflow.com/questions/18374362/multi-version-build-with-sbt | |
| Driving a multi-library-version build of metrics scala. Shell script attached can be used from metrics-scala root directory as: | |
| ```$ ./multi-akka.sh package``` | |
| To run a cross build of package for all 3 versions of akka specified. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment