21 lines
425 B
Groovy
21 lines
425 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group = 'memory'
|
|
sourceCompatibility = '17'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.springframework.boot:spring-boot-starter-web:3.0.2'
|
|
compileOnly 'org.projectlombok:lombok:1.18.24'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.24'
|
|
testImplementation 'org.springframework.boot:spring-boot-starter-test:3.0.2'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |