26 lines
563 B
Groovy
26 lines
563 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'org.example'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.projectlombok:lombok:1.18.28'
|
|
annotationProcessor 'org.projectlombok:lombok:1.18.28'
|
|
|
|
implementation 'org.slf4j:slf4j-api:2.0.7'
|
|
implementation 'ch.qos.logback:logback-classic:1.4.8'
|
|
implementation 'ch.qos.logback:logback-core:1.4.8'
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
} |