Skip to content

Instantly share code, notes, and snippets.

@scullxbones
Last active August 29, 2015 13:57
Show Gist options
  • Select an option

  • Save scullxbones/9713171 to your computer and use it in GitHub Desktop.

Select an option

Save scullxbones/9713171 to your computer and use it in GitHub Desktop.
## A driver script for metrics-scala
#!/bin/bash
CMD=$1
sbt "set akkaVersion := \"2.1.4\"" +$CMD "set akkaVersion := \"2.2.4\"" +$CMD "set akkaVersion := \"2.3.0\"" +$CMD
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