proglab5/build.gradle.kts
erius 822dba1f63 v2.2
command line functionality in no longer client-only
added ability to save data using command on server app
refactor of CommandLineHandler
added CommandLineHandlerClient and CommandLineHandlerServer classes
other minor changes
2022-05-16 15:20:36 +03:00

27 lines
416 B
Text

plugins {
java
}
group = "ru.erius.lab5"
version = "2.2"
repositories {
mavenCentral()
}
dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
tasks.getByName<Test>("test") {
useJUnitPlatform()
}
tasks.compileJava {
options.encoding = "windows-1252"
}
tasks.javadoc {
options.encoding = "UTF-8"
}