aboutsummaryrefslogtreecommitdiff
path: root/stage1/cbt.scala
diff options
context:
space:
mode:
Diffstat (limited to 'stage1/cbt.scala')
-rw-r--r--stage1/cbt.scala7
1 files changed, 7 insertions, 0 deletions
diff --git a/stage1/cbt.scala b/stage1/cbt.scala
index 33422cc..b1c462b 100644
--- a/stage1/cbt.scala
+++ b/stage1/cbt.scala
@@ -6,6 +6,13 @@ import scala.collection.immutable.Seq
import java.util.concurrent.ConcurrentHashMap
object `package`{
+ val mavenCentral = new URL("https://repo1.maven.org/maven2")
+ val jcenter = new URL("https://jcenter.bintray.com")
+ def bintray(owner: String) = new URL(s"https://dl.bintray.com/$owner/maven") // FIXME: url encode owner
+ private val sonatypeBase = new URL("https://oss.sonatype.org/content/repositories/")
+ val sonatypeReleases = sonatypeBase ++ "releases"
+ val sonatypeSnapshots = sonatypeBase ++ "snapshots"
+
private val lib = new BaseLib
implicit class FileExtensionMethods( file: File ){
def ++( s: String ): File = {