From a0fe82df8b4cc023424c3c5a1b0b6e2f84b03c94 Mon Sep 17 00:00:00 2001 From: Cedric Beust Date: Mon, 14 Mar 2016 23:53:26 +0400 Subject: [PATCH] Comment out snapshot repos. Will reactivate them once I've fixed unversioned id's resolution. --- .../src/main/kotlin/com/beust/kobalt/Constants.kt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/Constants.kt b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/Constants.kt index f17f42e1..f9f0a29e 100644 --- a/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/Constants.kt +++ b/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/Constants.kt @@ -10,10 +10,12 @@ object Constants { 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/" + "https://jcenter.bintray.com/" + + // The following two repos contain snapshots, never include them or default +// "https://repository.jboss.org/nexus/content/repositories/root_repository/", +// "http://repository.jetbrains.com/all/" +// "https://oss.sonatype.org/content/repositories/snapshots/" ) }