-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (32 loc) · 829 Bytes
/
build.gradle
File metadata and controls
38 lines (32 loc) · 829 Bytes
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
plugins {
id 'application'
id "org.jetbrains.kotlin.jvm" version "1.3.40"
id "com.github.johnrengelman.shadow" version "5.1.0"
}
repositories {
jcenter()
}
dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib"
compile 'org.kordamp.ikonli:ikonli-javafx:1.8.0'
compile 'org.kordamp.ikonli:ikonli-openiconic-pack:1.8.0'
compile 'org.slf4j:slf4j-api:1.6.6'
compile 'org.slf4j:slf4j-log4j12:1.6.6'
compile 'log4j:log4j:1.2.16'
compile 'com.dorkbox:SystemTray:3.17'
compile 'org.jfxtras:jmetro:4.2'
}
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
kotlinOptions {
jvmTarget = "1.8"
}
}
shadowJar {
mergeServiceFiles()
}
jar {
manifest {
attributes "Main-Class": "crazynote.Main"
}
}
mainClassName = 'crazynote.Main'