Skip to content

Commit

Permalink
Address system tests' deprecation warnings with Gradle 8.12
Browse files Browse the repository at this point in the history
  • Loading branch information
wilkinsona committed Jan 2, 2025
1 parent d8a9ebd commit b4d8a9f
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ plugins {
repositories {
exclusiveContent {
forRepository {
maven { url '{systemTestMavenRepository}' }
maven {
url = '{systemTestMavenRepository}'
}
}
filter {
includeGroup "org.springframework.boot"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,21 @@ plugins {
repositories {
exclusiveContent {
forRepository {
maven { url '{systemTestMavenRepository}' }
maven {
url = '{systemTestMavenRepository}'
}
}
filter {
includeGroup "org.springframework.boot"
}
}
mavenCentral()
maven { url 'https://repo.spring.io/milestone' }
maven { url 'https://repo.spring.io/snapshot' }
maven {
url = 'https://repo.spring.io/milestone'
}
maven {
url = 'https://repo.spring.io/snapshot'
}
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ plugins {
repositories {
exclusiveContent {
forRepository {
maven { url '{systemTestMavenRepository}' }
maven {
url = '{systemTestMavenRepository}'
}
}
filter {
includeGroup "org.springframework.boot"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ plugins {
repositories {
exclusiveContent {
forRepository {
maven { url '{systemTestMavenRepository}' }
maven {
url = '{systemTestMavenRepository}'
}
}
filter {
includeGroup "org.springframework.boot"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ plugins {
repositories {
exclusiveContent {
forRepository {
maven { url '{systemTestMavenRepository}' }
maven {
url = '{systemTestMavenRepository}'
}
}
filter {
includeGroup "org.springframework.boot"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ plugins {
repositories {
exclusiveContent {
forRepository {
maven { url '{systemTestMavenRepository}' }
maven {
url = '{systemTestMavenRepository}'
}
}
filter {
includeGroup "org.springframework.boot"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ plugins {
repositories {
exclusiveContent {
forRepository {
maven { url '{systemTestMavenRepository}' }
maven {
url = '{systemTestMavenRepository}'
}
}
filter {
includeGroup "org.springframework.boot"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ pluginManagement {
repositories {
exclusiveContent {
forRepository {
maven { url '{systemTestMavenRepository}' }
maven {
url = '{systemTestMavenRepository}'
}
}
filter {
includeGroup "org.springframework.boot"
Expand Down

0 comments on commit b4d8a9f

Please sign in to comment.