Skip to content

Commit 7231b18

Browse files
committed
:fix more deprecations
1 parent 8b4f07e commit 7231b18

File tree

36 files changed

+40
-40
lines changed

36 files changed

+40
-40
lines changed

buildSrc/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ dependencies {
4444
implementation("gradle.plugin.io.morethan.jmhreport:gradle-jmh-report:0.9.6")
4545
implementation("me.champeau.jmh:jmh-gradle-plugin:0.7.3")
4646

47-
// earlier versions aren't compatible with Gradle 8.1.1
48-
implementation("org.springframework.boot:spring-boot-gradle-plugin:2.5.12")
47+
// updated to latest 2.x version for better Gradle 9.0 compatibility
48+
implementation("org.springframework.boot:spring-boot-gradle-plugin:2.7.18")
4949
}

etw/etw-testapp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id("ai.java-conventions")
3-
id("org.springframework.boot" version "2.5.12")
3+
id("org.springframework.boot" version "2.7.18")
44
id("war")
55
}
66

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version=3.7.3
33

44
org.gradle.parallel=true
55
org.gradle.caching=true
6-
org.gradle.configuration-cache=true
6+
# org.gradle.configuration-cache=true
77

88
org.gradle.priority=low
99

smoke-tests/apps/ActuatorMetrics/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ plugins {
33
}
44

55
dependencies {
6-
implementation("org.springframework.boot:spring-boot-starter-web:2.5.12")
7-
implementation("org.springframework.boot:spring-boot-starter-actuator:2.5.12")
6+
implementation("org.springframework.boot:spring-boot-starter-web:2.7.18")
7+
implementation("org.springframework.boot:spring-boot-starter-actuator:2.7.18")
88
}

smoke-tests/apps/AzureFunctions/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ plugins {
33
}
44

55
dependencies {
6-
implementation("org.springframework.boot:spring-boot-starter-web:2.5.12")
6+
implementation("org.springframework.boot:spring-boot-starter-web:2.7.18")
77
}

smoke-tests/apps/AzureSdk/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
dependencies {
6-
implementation("org.springframework.boot:spring-boot-starter-web:2.5.12") {
6+
implementation("org.springframework.boot:spring-boot-starter-web:2.7.18") {
77
exclude("org.springframework.boot", "spring-boot-starter-tomcat")
88
}
99
// want to test with one of the earliest version supported, and not managed version used in agent

smoke-tests/apps/ClassicSdkWebInterop2x/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88
// and duplicate class files produces lots of warning messages on jetty
99
exclude("com.microsoft.azure", "applicationinsights-core")
1010
}
11-
implementation("org.springframework.boot:spring-boot-starter-web:2.5.12") {
11+
implementation("org.springframework.boot:spring-boot-starter-web:2.7.18") {
1212
exclude("org.springframework.boot", "spring-boot-starter-tomcat")
1313
}
1414
// this dependency is needed to make wildfly happy

smoke-tests/apps/ClassicSdkWebInterop3x/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
dependencies {
66
implementation(project(":classic-sdk:web"))
7-
implementation("org.springframework.boot:spring-boot-starter-web:2.5.12") {
7+
implementation("org.springframework.boot:spring-boot-starter-web:2.7.18") {
88
exclude("org.springframework.boot", "spring-boot-starter-tomcat")
99
}
1010
// this dependency is needed to make wildfly happy

smoke-tests/apps/ClassicSdkWebInterop3xUsingOld3xAgent/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44

55
dependencies {
66
implementation(project(":classic-sdk:web"))
7-
implementation("org.springframework.boot:spring-boot-starter-web:2.5.12") {
7+
implementation("org.springframework.boot:spring-boot-starter-web:2.7.18") {
88
exclude("org.springframework.boot", "spring-boot-starter-tomcat")
99
}
1010
// this dependency is needed to make wildfly happy

smoke-tests/apps/CustomDimensions/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
dependencies {
6-
implementation("org.springframework.boot:spring-boot-starter-web:2.5.12") {
6+
implementation("org.springframework.boot:spring-boot-starter-web:2.7.18") {
77
exclude("org.springframework.boot", "spring-boot-starter-tomcat")
88
}
99
// this dependency is needed to make wildfly happy

0 commit comments

Comments
 (0)