-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
46 lines (39 loc) · 898 Bytes
/
build.gradle
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
40
41
42
43
44
45
46
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.13'
id 'org.jetbrains.kotlin.jvm' version '1.7.21'
}
group 'qaz.code'
version '0.1.0'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.jetbrains:annotations:23.0.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
implementation 'org.fxmisc.richtext:richtextfx:0.11.0'
implementation 'com.github.mouse0w0:darculafx:9.0.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
}
javafx {
version = "17.0.2"
modules = [ 'javafx.controls' ]
}
application {
mainClass = 'qaz.code.Main'
}
test {
useJUnitPlatform()
}
compileKotlin {
kotlinOptions {
jvmTarget = "17"
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "17"
}
}