12345678910111213141516171819202122232425262728293031 |
- plugins {
- id "java"
- }
- group = project.rootProject.group
- version = project.rootProject.version
- sourceCompatibility = "17"
- repositories {
- mavenCentral()
- maven { url "https://repo.spring.io/milestone" }
- }
- dependencies {
- implementation platform("org.springframework.boot:spring-boot-dependencies:3.0.0")
- implementation platform("org.springframework.security:spring-security-bom:6.1.0-M2")
- implementation "org.springframework.boot:spring-boot-starter-web"
- implementation "org.springframework.boot:spring-boot-starter-thymeleaf"
- implementation "org.springframework.boot:spring-boot-starter-security"
- implementation "org.springframework.boot:spring-boot-starter-oauth2-client"
- implementation "org.springframework.boot:spring-boot-starter-oauth2-resource-server"
- implementation "org.springframework.boot:spring-boot-starter-data-jpa"
- implementation project(":spring-security-oauth2-authorization-server")
- runtimeOnly "com.h2database:h2"
- testImplementation "org.springframework.boot:spring-boot-starter-test"
- testImplementation "org.springframework.security:spring-security-test"
- }
- tasks.named("test") {
- useJUnitPlatform()
- }
|