ENT-12080: Replaces jcenter with local public backup.

This commit is contained in:
Adel El-Beik 2024-08-13 14:10:50 +01:00
parent be4664d680
commit c5815b0381
2 changed files with 12 additions and 4 deletions

View File

@ -190,7 +190,9 @@ buildscript {
} }
gradlePluginPortal() gradlePluginPortal()
mavenCentral() mavenCentral()
jcenter() maven {
url "${publicArtifactURL}/jcenter-backup"
}
} }
} }
dependencies { dependencies {
@ -454,7 +456,9 @@ allprojects {
} }
} }
mavenCentral() mavenCentral()
jcenter() maven {
url "${publicArtifactURL}/jcenter-backup"
}
} }
} }

View File

@ -9,7 +9,9 @@ buildscript {
repositories { repositories {
mavenLocal() mavenLocal()
mavenCentral() mavenCentral()
jcenter() maven {
url "${publicArtifactURL}/jcenter-backup"
}
} }
dependencies { dependencies {
@ -20,7 +22,9 @@ buildscript {
repositories { repositories {
mavenLocal() mavenLocal()
mavenCentral() mavenCentral()
jcenter() maven {
url "${publicArtifactURL}/jcenter-backup"
}
} }
apply plugin: 'kotlin' apply plugin: 'kotlin'