=pro #15031 move build logic into separate files

This commit is contained in:
Martynas Mickevicius 2014-05-07 14:49:35 +02:00
parent 26a7b029da
commit ee5ea5e13f
9 changed files with 522 additions and 523 deletions

8
project/GitHub.scala Normal file
View file

@ -0,0 +1,8 @@
package akka
object GitHub {
def url(v: String): String = {
val branch = if (v.endsWith("SNAPSHOT")) "master" else "v" + v
"http://github.com/akka/akka/tree/" + branch
}
}