TextStatisticsProject/build.gradle

28 lines
423 B
Groovy

plugins {
id 'org.jetbrains.kotlin.jvm' version '1.8.0'
id 'application'
}
group = 'org.example'
version = '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
implementation("org.jetbrains.lets-plot:lets-plot-kotlin:4.0.0")
testImplementation 'org.jetbrains.kotlin:kotlin-test'
}
test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(8)
}
application {
mainClassName = 'MainKt'
}