proglab5/Lab5Core/build.gradle.kts

30 lines
521 B
Text
Raw Normal View History

2022-04-29 16:29:59 +00:00
plugins {
java
}
group = "ru.erius.lab5"
version = "2.1"
2022-04-29 16:29:59 +00:00
repositories {
mavenCentral()
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
compileOnly("org.projectlombok:lombok:1.18.22")
annotationProcessor("org.projectlombok:lombok:1.18.22")
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}
tasks.compileJava {
options.encoding = "UTF-8"
}
tasks.javadoc {
options.encoding = "UTF-8"
}