aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects
diff options
context:
space:
mode:
authorsebastian.sellmair <sebastian.sellmair@jetbrains.com>2020-07-30 14:33:41 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-07-30 14:55:16 +0200
commitba4e7e2a258bbef281039ed3829b23a657225d27 (patch)
tree9b46561334203d694bec0cb24c9b3bad28273c86 /integration-tests/gradle/projects
parent0a2e62ac839f15939e61de990e57307658f69832 (diff)
downloaddokka-ba4e7e2a258bbef281039ed3829b23a657225d27.tar.gz
dokka-ba4e7e2a258bbef281039ed3829b23a657225d27.tar.bz2
dokka-ba4e7e2a258bbef281039ed3829b23a657225d27.zip
Use `cache-redirector` repositories for Gradle integration tests
Diffstat (limited to 'integration-tests/gradle/projects')
-rw-r--r--integration-tests/gradle/projects/template.root.gradle.kts6
-rw-r--r--integration-tests/gradle/projects/template.settings.gradle.kts6
2 files changed, 6 insertions, 6 deletions
diff --git a/integration-tests/gradle/projects/template.root.gradle.kts b/integration-tests/gradle/projects/template.root.gradle.kts
index 51d199ff..f76d616b 100644
--- a/integration-tests/gradle/projects/template.root.gradle.kts
+++ b/integration-tests/gradle/projects/template.root.gradle.kts
@@ -1,11 +1,11 @@
allprojects {
repositories {
- maven("https://dl.bintray.com/kotlin/kotlin-eap/")
- maven("https://dl.bintray.com/kotlin/kotlin-dev/")
- jcenter()
+ maven("https://cache-redirector.jetbrains.com/jcenter.bintray.com")
mavenLocal()
mavenCentral()
google()
+ maven("https://cache-redirector.jetbrains.com/dl.bintray.com/kotlin/kotlin-eap")
+ maven("https://cache-redirector.jetbrains.com/dl.bintray.com/kotlin/kotlin-dev")
}
}
diff --git a/integration-tests/gradle/projects/template.settings.gradle.kts b/integration-tests/gradle/projects/template.settings.gradle.kts
index 7fe3c510..6c73899f 100644
--- a/integration-tests/gradle/projects/template.settings.gradle.kts
+++ b/integration-tests/gradle/projects/template.settings.gradle.kts
@@ -26,12 +26,12 @@ pluginManagement {
}
}
repositories {
- maven("https://dl.bintray.com/kotlin/kotlin-eap")
- maven("https://dl.bintray.com/kotlin/kotlin-dev/")
mavenLocal()
+ maven("https://cache-redirector.jetbrains.com/jcenter.bintray.com")
mavenCentral()
- jcenter()
gradlePluginPortal()
google()
+ maven("https://cache-redirector.jetbrains.com/dl.bintray.com/kotlin/kotlin-eap")
+ maven("https://cache-redirector.jetbrains.com/dl.bintray.com/kotlin/kotlin-dev")
}
}