-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
39 lines (33 loc) · 988 Bytes
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
plugins {
kotlin("jvm") version "1.9.23"
id("org.openjfx.javafxplugin") version "0.0.13"
id("org.jlleitschuh.gradle.ktlint") version "12.1.1"
}
group = "com.letter.learning"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
val mockkVersion = "1.13.13"
val assertjVersion = "3.26.3"
val tornadoVersion = "1.7.20"
val jacksonVersion = "2.14.2"
val junitVersion = "5.11.3"
javafx {
version = "17.0.2"
modules = listOf("javafx.controls", "javafx.graphics")
}
dependencies {
implementation("no.tornado:tornadofx:$tornadoVersion")
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion")
testImplementation("org.jetbrains.kotlin:kotlin-test")
testImplementation("io.mockk:mockk:$mockkVersion")
testImplementation("org.assertj:assertj-core:$assertjVersion")
testImplementation("org.junit.jupiter:junit-jupiter-params:$junitVersion")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}