Tomáš Procházka
05/29/2024, 7:06 PMdependencyResolutionManagement { repositories {.
But one of my plugin declaring own repository and for some reason Gradle not allow to use repository from both settings and project, why? Why I must choose just one variant? I would welcome
repositoriesMode.set(RepositoriesMode.ALLOW_BOTH)Thomas Broyer
05/29/2024, 7:20 PMnotForConfigurations, and that one onlyForConfigurations)
But there's general agreement that plugins shouldn't declare repositories, and rather let that to plugin users as a prerequisite.Tomáš Procházka
05/29/2024, 8:14 PMephemient
05/29/2024, 8:59 PMTomáš Procházka
05/29/2024, 10:30 PMplugins {
id("com.gradle.enterprise").version("3.15.1")
}
is possible to apply in settings.