Remove /plugins-release and /plugins-snapshot from build
Those repositories now need authentication, and we do not actually need them, the dependencies can be resolved from Maven Central Closes gh-13245
This commit is contained in:
parent
a53cbb838b
commit
663f5cf76b
|
@ -10,7 +10,6 @@ sourceCompatibility = 1.8
|
||||||
repositories {
|
repositories {
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
maven { url 'https://repo.spring.io/plugins-release/' }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceSets {
|
sourceSets {
|
||||||
|
@ -87,7 +86,7 @@ dependencies {
|
||||||
implementation localGroovy()
|
implementation localGroovy()
|
||||||
|
|
||||||
implementation 'io.github.gradle-nexus:publish-plugin:1.1.0'
|
implementation 'io.github.gradle-nexus:publish-plugin:1.1.0'
|
||||||
implementation 'io.projectreactor:reactor-core:3.5.0-M1'
|
implementation 'io.projectreactor:reactor-core:3.5.0'
|
||||||
implementation 'org.gretty:gretty:3.0.9'
|
implementation 'org.gretty:gretty:3.0.9'
|
||||||
implementation 'com.apollographql.apollo:apollo-runtime:2.4.5'
|
implementation 'com.apollographql.apollo:apollo-runtime:2.4.5'
|
||||||
implementation 'com.github.ben-manes:gradle-versions-plugin:0.38.0'
|
implementation 'com.github.ben-manes:gradle-versions-plugin:0.38.0'
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
pluginManagement {
|
pluginManagement {
|
||||||
repositories {
|
repositories {
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
maven { url 'https://repo.spring.io/plugins-release' }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue