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

Fix repos.

This commit is contained in:
Cedric Beust 2016-03-21 22:00:38 +04:00
parent 3df9e4ad1c
commit a84bf05dd7

View file

@ -7,15 +7,15 @@ object Constants {
val BUILD_FILE_DIRECTORY = "kobalt/src" val BUILD_FILE_DIRECTORY = "kobalt/src"
val BUILD_FILE_PATH = KFiles.joinDir(BUILD_FILE_DIRECTORY, BUILD_FILE_NAME) val BUILD_FILE_PATH = KFiles.joinDir(BUILD_FILE_DIRECTORY, BUILD_FILE_NAME)
internal val DEFAULT_REPOS = listOf( internal val DEFAULT_REPOS = listOf<String>(
"http://repo1.maven.org/maven2/", "http://repo1.maven.org/maven2/",
"https://maven-central.storage.googleapis.com/", "https://maven-central.storage.googleapis.com/",
"https://jcenter.bintray.com/" "https://jcenter.bintray.com/"
// The following two repos contain snapshots, never include them or default // The following repos contain snapshots, don't include them by default
// "https://repository.jboss.org/nexus/content/repositories/root_repository/", // , "https://repository.jboss.org/nexus/content/repositories/root_repository/"
// "http://repository.jetbrains.com/all/" // , "http://repository.jetbrains.com/all/"
// "https://oss.sonatype.org/content/repositories/snapshots/" // , "https://oss.sonatype.org/content/repositories/snapshots/"
) )
} }