Skip to content

Commit 0efac87

Browse files
committed
native doesn't work with 3.0
1 parent 79a3449 commit 0efac87

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

settings.gradle.kts

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ dependencyResolutionManagement {
4141
}
4242
// r2dbc is not compatible with earlier versions
4343
addSpringBootCatalog("springBoot2", "2.6.15", "2.+")
44-
addSpringBootCatalog("springBoot3", "3.0.0", "3.+")
44+
// spring boot 3.0 is not compatible with graalvm native image
45+
addSpringBootCatalog("springBoot3", "3.1.0", "3.+")
4546
addSpringBootCatalog("springBoot32", "3.2.0", "3.+")
4647
}
4748
}

smoke-tests-otel-starter/spring-boot-3/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id("otel.java-conventions")
3-
alias(springBoot32.plugins.versions)
3+
alias(springBoot3.plugins.versions)
44
id("org.graalvm.buildtools.native")
55
}
66

0 commit comments

Comments
 (0)