1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 08:38:13 -07:00

Break Kobalt in two projects.

This commit is contained in:
Cedric Beust 2015-12-18 02:26:49 +04:00
parent 733c4b52b5
commit 3914e92f6d
114 changed files with 114 additions and 98 deletions

View file

@ -0,0 +1,14 @@
package com.beust.kobalt
object Constants {
val BUILD_FILE_NAME = "Build.kt"
val BUILD_FILE_DIRECTORY = "kobalt/src"
internal val DEFAULT_REPOS = listOf(
"http://repo1.maven.org/maven2/",
"https://maven-central.storage.googleapis.com/",
"https://repository.jboss.org/nexus/content/repositories/root_repository/",
"https://jcenter.bintray.com/"
)
}