-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
57 lines (48 loc) · 1.24 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
buildscript {
dependencies {
classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.8.2'
}
repositories {
mavenLocal()
mavenCentral()
}
}
plugins {
id 'application'
id 'org.jetbrains.kotlin.jvm' version '1.3.61'
}
apply plugin: 'javafx-gradle-plugin'
group 'ch.ayedo'
version '0.1.0'
repositories {
mavenCentral()
}
jfx {
mainClass = 'ch.ayedo.tcpkiller.TcpKillerKt'
vendor = 'ayedo'
appName = 'TcpKiller'
usePatchedJFXAntLib = false
}
application {
mainClassName = 'ch.ayedo.tcpkiller.TcpKillerKt'
}
dependencies {
compile 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
compile "org.jetbrains.kotlin:kotlin-reflect"
compile 'no.tornado:tornadofx:1.7.19'
compile 'com.google.guava:guava:28.2-jre'
compile 'io.reactivex:rxjavafx:2.0.2'
compile 'io.reactivex.rxjava3:rxjava:3.0.0'
compile 'org.zeroturnaround:zt-exec:1.11'
compile 'com.github.doyaaaaaken:kotlin-csv-jvm:0.7.3'
runtime 'org.slf4j:slf4j-simple:1.7.25'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
kotlinOptions {
freeCompilerArgs = ["-XXLanguage:+InlineClasses"]
}
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}