mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 16:28:12 -07:00
19 lines
656 B
Kotlin
19 lines
656 B
Kotlin
package com.beust.kobalt
|
|
|
|
import com.beust.kobalt.misc.KFiles
|
|
|
|
object Constants {
|
|
val BUILD_FILE_NAME = "Build.kt"
|
|
val BUILD_FILE_DIRECTORY = "kobalt/src"
|
|
val BUILD_FILE_PATH = KFiles.joinDir(BUILD_FILE_DIRECTORY, BUILD_FILE_NAME)
|
|
|
|
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/",
|
|
"http://repository.jetbrains.com/all/",
|
|
"https://oss.sonatype.org/content/repositories/snapshots/"
|
|
)
|
|
|
|
}
|