mirror of
https://github.com/ZhigalskiiIvan/TextStatisticsProject.git
synced 2024-11-10 02:01:52 +03:00
28 lines
423 B
Groovy
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'
|
|
} |