-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.gradle
81 lines (70 loc) · 1.73 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* This file was generated by the Gradle 'init' task.
*/
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'no.tornado:fxlauncher-gradle-plugin:1.0.20'
}
}
plugins {
id 'java'
id 'maven-publish'
id 'org.jetbrains.kotlin.jvm' version '1.3.20'
id 'no.tornado.fxlauncher' version '1.0.20'
id 'com.github.johnrengelman.shadow' version '5.1.0'
// id 'org.jetbrains.kotlin.multiplatform' version '1.3.20'
}
repositories {
mavenLocal()
mavenCentral()
}
compileKotlin {
kotlinOptions.jvmTarget= 1.8
}
dependencies {
compile 'no.tornado:fxlauncher-gradle-plugin:1.0.20'
compile 'org.controlsfx:controlsfx:8.40.12'
implementation 'no.tornado:tornadofx:1.7.19'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.3.20'
testImplementation 'org.jetbrains.kotlin:kotlin-test:1.3.50'
shadow 'no.tornado:tornadofx:1.7.19'
shadow 'org.jetbrains.kotlin:kotlin-stdlib:1.3.20'
}
group = 'com.tobiasfried'
version = '0.2.1'
sourceCompatibility = '1.8'
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}
fxlauncher {
applicationVendor 'Tobias Fried'
// Base URL where you will host the application artifacts
applicationUrl 'https://fxldemo.tornado.no/'
applicationMainClass 'com.tobiasfried.iconpacktools.app.IconPackTools'
acceptDowngrade false
}
shadowJar {
manifest {
attributes 'Main-Class': 'com.tobiasfried.iconpacktools.app.IconPackTools'
}
}
//kotlin {
//// mingwX64("native") {
// mingwX64() {
// binaries {
// executable()
// }
// }
//}
//
//wrapper {
// gradleVersion = "5.6.2"
// distributionType = "ALL"
//}