-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
17 lines (14 loc) · 1.09 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
dependencyResolutionManagement {
versionCatalogs {
create("deps") {
version("graalvmPluginVersion", "0.10.3") // https://central.sonatype.com/artifact/org.graalvm.buildtools.native/org.graalvm.buildtools.native.gradle.plugin
version("springBootLibVersion", "3.4.0") // https://central.sonatype.com/artifact/org.springframework.boot/spring-boot-dependencies
plugin("graalvm", "org.graalvm.buildtools.native").versionRef("graalvmPluginVersion")
plugin("springboot", "org.springframework.boot").versionRef("springBootLibVersion")
library("libs.spring.boot.starter.web", "org.springframework.boot", "spring-boot-starter-web").versionRef("springBootLibVersion")
library("libs.spring.boot.starter.oauth2.resource.server", "org.springframework.boot", "spring-boot-starter-oauth2-resource-server").versionRef("springBootLibVersion")
library("libs.spring.boot.starter.test", "org.springframework.boot", "spring-boot-starter-test").versionRef("springBootLibVersion")
}
}
}
rootProject.name = "spring-boot-3.4-bug"