mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-05-01 10:28:11 -07:00
21 lines
696 B
Kotlin
21 lines
696 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<String>(
|
|
// "https://maven-central.storage.googleapis.com/",
|
|
"http://repo1.maven.org/maven2/",
|
|
"https://jcenter.bintray.com/",
|
|
"http://repository.jetbrains.com/all/"
|
|
|
|
// snapshots
|
|
// "https://oss.sonatype.org/content/repositories/snapshots/"
|
|
// , "https://repository.jboss.org/nexus/content/repositories/root_repository/"
|
|
)
|
|
|
|
}
|