2023-03-23 19:28:02 +03:00
|
|
|
plugins {
|
|
|
|
id 'org.jetbrains.kotlin.jvm' version '1.8.0'
|
|
|
|
id 'application'
|
|
|
|
}
|
|
|
|
|
|
|
|
group = 'org.example'
|
|
|
|
version = '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2023-03-30 16:15:22 +03:00
|
|
|
|
2023-03-23 19:28:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-03-24 17:33:13 +03:00
|
|
|
implementation("org.jetbrains.lets-plot:lets-plot-kotlin:4.0.0")
|
2023-03-30 16:15:22 +03:00
|
|
|
implementation("org.jetbrains.lets-plot:lets-plot-batik:3.1.0")
|
|
|
|
implementation("org.jetbrains.lets-plot:lets-plot-jfx:3.1.0")
|
|
|
|
implementation("org.slf4j:slf4j-nop:1.7.29")
|
|
|
|
implementation("org.jetbrains.lets-plot:lets-plot-image-export:3.1.0")
|
2023-03-23 19:28:02 +03:00
|
|
|
testImplementation 'org.jetbrains.kotlin:kotlin-test'
|
|
|
|
}
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvmToolchain(8)
|
|
|
|
}
|
|
|
|
|
|
|
|
application {
|
|
|
|
mainClassName = 'MainKt'
|
|
|
|
}
|