Last active
August 29, 2015 13:57
-
-
Save scullxbones/9713171 to your computer and use it in GitHub Desktop.
Revisions
-
scullxbones revised this gist
Mar 22, 2014 . 1 changed file with 0 additions and 7 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +0,0 @@ -
scullxbones revised this gist
Mar 22, 2014 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ 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. -
scullxbones renamed this gist
Mar 22, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
scullxbones created this gist
Mar 22, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ 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. 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ #!/bin/bash CMD=$1 sbt "set akkaVersion := \"2.1.4\"" +$CMD "set akkaVersion := \"2.2.4\"" +$CMD "set akkaVersion := \"2.3.0\"" +$CMD