22 lines
465 B
Plaintext
22 lines
465 B
Plaintext
|
plugins {
|
||
|
id("java")
|
||
|
}
|
||
|
|
||
|
group = "cn.wzpmc"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
// https://mvnrepository.com/artifact/org.projectlombok/lombok
|
||
|
compileOnly("org.projectlombok:lombok:1.18.38")
|
||
|
annotationProcessor("org.projectlombok:lombok:1.18.38")
|
||
|
testImplementation(platform("org.junit:junit-bom:5.10.0"))
|
||
|
testImplementation("org.junit.jupiter:junit-jupiter")
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|