Skip to content

Commit f188cb8

Browse files
Temporarily define which groups should be resolved from plugin portal
If we only try to resolve those dependencies that are already there, JCenter does not fail
1 parent 3e309cd commit f188cb8

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

settings.gradle

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,30 @@
11
pluginManagement {
22
repositories {
3+
mavenCentral()
34
maven { url 'https://repo.spring.io/release' }
4-
gradlePluginPortal()
5+
gradlePluginPortal {
6+
content {
7+
includeGroup('org.gradle')
8+
includeGroup('org.gradle.kotlin')
9+
includeGroup('org.gradle.kotlin.kotlin-dsl')
10+
11+
includeGroup('com.gradle')
12+
includeGroup('com.gradle.enterprise')
13+
14+
includeGroup('me.champeau.jmh')
15+
includeGroup('io.github.gradle-nexus')
16+
includeGroup('gradle.plugin.com.hierynomus.gradle.plugins')
17+
includeGroup('org.ajoberstar.grgit')
18+
includeGroup('io.spring.nohttp')
19+
includeGroup('com.github.johnrengelman.shadow')
20+
includeGroup('gradle.plugin.com.github.johnrengelman')
21+
}
22+
23+
metadataSources {
24+
mavenPom()
25+
ignoreGradleMetadataRedirection()
26+
}
27+
}
528
}
629
}
730

0 commit comments

Comments
 (0)