123456789101112131415161718192021222324252627282930313233343536 |
- plugins {
- id 'java'
- id 'org.springframework.boot' version '3.4.4'
- id 'io.spring.dependency-management' version '1.1.7'
- }
- group = 'example'
- version = '0.0.1-SNAPSHOT'
- java {
- toolchain {
- languageVersion = JavaLanguageVersion.of(17)
- }
- }
- repositories {
- maven { url "https://repo.spring.io/snapshot" }
- maven { url "https://repo.spring.io/milestone" }
- mavenCentral()
- }
- dependencies {
- implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
- implementation 'org.springframework.boot:spring-boot-starter-security'
- implementation 'org.springframework.boot:spring-boot-starter-web'
- implementation 'org.springframework.security:spring-security-acl'
- implementation 'org.hsqldb:hsqldb'
- testImplementation 'org.springframework.boot:spring-boot-starter-test'
- testImplementation 'org.springframework.security:spring-security-test'
- testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
- }
- tasks.named('test') {
- useJUnitPlatform()
- }
|