Skip to content

Commit

Permalink
Get rid of bintray and jcenter mentions in our buildscript (#3109)
Browse files Browse the repository at this point in the history
Otherwise, our integration tests try to resolve these repositories on failures
  • Loading branch information
qwwdfsad committed Aug 7, 2023
1 parent f7bd2ce commit 0c21de1
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 33 deletions.
1 change: 0 additions & 1 deletion examples/plugin/hide-internal-api/build.gradle.kts
Expand Up @@ -14,7 +14,6 @@ version = "1.4-SNAPSHOT"

repositories {
mavenCentral()
jcenter()
}

val dokkaVersion: String by project
Expand Down
3 changes: 0 additions & 3 deletions integration-tests/gradle/projects/template.root.gradle.kts
@@ -1,11 +1,8 @@
allprojects {
repositories {
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")
maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven") {
content {
includeGroup("org.jetbrains.kotlinx")
Expand Down
Expand Up @@ -28,11 +28,8 @@ pluginManagement {
}
repositories {
mavenLocal()
maven("https://cache-redirector.jetbrains.com/jcenter.bintray.com")
mavenCentral()
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")
}
}
14 changes: 1 addition & 13 deletions integration-tests/maven/projects/biojava/biojava.diff
Expand Up @@ -2,24 +2,12 @@ diff --git a/pom.xml b/pom.xml
index 7e3e806d1..765b6dea3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -31,6 +31,24 @@
@@ -31,6 +31,12 @@
<distribution>repo</distribution>
</license>
</licenses>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>kotlin-dev</id>
+ <url>https://dl.bintray.com/kotlin/kotlin-dev</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>kotlin-eap</id>
+ <url>https://dl.bintray.com/kotlin/kotlin-eap</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>jcenter</id>
+ <url>https://jcenter.bintray.com/</url>
+ </pluginRepository>
+ <pluginRepository>
+ <id>space</id>
+ <url>https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven/</url>
+ </pluginRepository>
Expand Down
13 changes: 0 additions & 13 deletions integration-tests/maven/projects/it-maven/pom.xml
Expand Up @@ -169,19 +169,6 @@
</build>

<pluginRepositories>
<pluginRepository>
<id>kotlin-eap</id>
<url>https://cache-redirector.jetbrains.com/dl.bintray.com/kotlin/kotlin-eap/</url>
</pluginRepository>
<pluginRepository>
<id>kotlin-dev</id>
<url>https://cache-redirector.jetbrains.com/dl.bintray.com/kotlin/kotlin-dev/</url>
</pluginRepository>
<pluginRepository>
<id>jcenter</id>
<name>JCenter</name>
<url>https://cache-redirector.jetbrains.com/jcenter.bintray.com/</url>
</pluginRepository>
<pluginRepository>
<id>Space</id>
<name>Space</name>
Expand Down

0 comments on commit 0c21de1

Please sign in to comment.