-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
78 lines (43 loc) · 1.58 KB
/
build.gradle
File metadata and controls
78 lines (43 loc) · 1.58 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
plugins {
id 'org.jetbrains.kotlin.jvm' version "1.4.32"
id 'application'
//id 'gradle-one-jar'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
group = 'com.test'
version = '1.0-SNAPSHOT'
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
repositories {
mavenCentral()
}
application {
mainClassName = "com.example.MainKt"
}
dependencies {
implementation "no.tornado:tornadofx:$tornadofx_version"
implementation 'net.pwall.yaml:yaml-simple:1.3'
implementation 'com.google.code.gson:gson:2.8.8'
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.5.21'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation group: 'com.twelvemonkeys.imageio', name: 'imageio-core', version: '3.8.1'
implementation group: 'com.twelvemonkeys.imageio', name: 'imageio-tga', version: '3.8.1'
implementation("com.github.lafa.twelvemonkeyspurejava.imageio:imageio-pict:1.0")
implementation("com.github.lafa.twelvemonkeyspurejava.imageio:imageio-pdf:1.0")
implementation("com.github.lafa.twelvemonkeyspurejava.imageio:imageio-psd:1.0")
implementation("com.github.lafa.twelvemonkeyspurejava.imageio:imageio-iff:1.0")
implementation("com.twelvemonkeys.imageio:imageio-tiff-jdk-interop:3.7.0")
implementation("com.twelvemonkeys.imageio:imageio-hdr:3.8.1")
}
tasks.jar {
manifest {
attributes["Main-Class"] = "com.example.MyApp"
}
configurations["compileClasspath"].forEach {
from(zipTree(it.absoluteFile))
}
}