Browse Source

Enable SNAPSHOT builds

To use Reactor SNAPSHOTs in gh-18041 we need to enable the
snapshot repositories.

Issue gh-18041
dependabot/gradle/main/org.springframework.data-spring-data-bom-2025.1.0-SNAPSHOT
Rob Winch 2 months ago
parent
commit
4b6c9cca7e
No known key found for this signature in database
  1. 2
      buildSrc/build.gradle
  2. 2
      settings.gradle

2
buildSrc/build.gradle

@ -12,7 +12,7 @@ java {
repositories { repositories {
gradlePluginPortal() gradlePluginPortal()
mavenCentral() mavenCentral()
maven { url 'https://repo.spring.io/milestone' } maven { url 'https://repo.spring.io/snapshot' }
} }
sourceSets { sourceSets {

2
settings.gradle

@ -11,7 +11,7 @@ plugins {
dependencyResolutionManagement { dependencyResolutionManagement {
repositories { repositories {
mavenCentral() mavenCentral()
maven { url "https://repo.spring.io/milestone" } maven { url "https://repo.spring.io/snapshot" }
} }
} }

Loading…
Cancel
Save