=pro #15031 move build logic into separate files
This commit is contained in:
parent
26a7b029da
commit
ee5ea5e13f
9 changed files with 522 additions and 523 deletions
8
project/GitHub.scala
Normal file
8
project/GitHub.scala
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue