Files
spring-authorization-server/samples/messages-resource/samples-messages-resource.gradle
Steve Riesenberg 697d6e91b6 Update to Spring Boot 3.1.0-RC1
Closes gh-1198
2023-05-05 16:59:58 -05:00

21 lines
555 B
Groovy

plugins {
id "org.springframework.boot" version "3.1.0-RC1"
id "io.spring.dependency-management" version "1.1.0"
id "java"
}
group = project.rootProject.group
version = project.rootProject.version
sourceCompatibility = "17"
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
}
dependencies {
implementation "org.springframework.boot:spring-boot-starter-web"
implementation "org.springframework.boot:spring-boot-starter-security"
implementation "org.springframework.boot:spring-boot-starter-oauth2-resource-server"
}