// 1. Defined at the top level
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'org.springframework') {
details.useVersion '6.1.10'
details.because 'Required for Java 21 and etsf migration'
}
}
}
// 2. Your existing configurations block
configurations {
// any existing custom configurations
}
// 3. Your existing dependencies block
dependencies {
// ... your existing entries
compileOnly sourceSets.stubs.output
implementation platform(group: 'com.citi.157514.comet', name: 'comet-bom', version: '9.4.0e_b1')
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)