-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
63 lines (51 loc) · 1.41 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
/*
* Skyclient Universal Installer - Skyclient installer but written in java!
* Copyright (C) koxx12-dev [2021 - 2021]
*
* This program comes with ABSOLUTELY NO WARRANTY
* This is free software, and you are welcome to redistribute it
* under the certain conditions that can be found here
* https://www.gnu.org/licenses/gpl-3.0.en.html
*
* If you have any questions or concerns, please create
* an issue on the github page that can be found under this url
* https://github.com/koxx12-dev/Skyclient-installer-Java
*
* If you have a private concern, please contact me on
* Discord: Koxx12#8061
*
*/
plugins {
id 'java'
id 'idea'
id 'com.github.johnrengelman.shadow' version '7.0.0'
}
archivesBaseName = 'Skyclient-Universal-Installer'
group = "io.github.koxx12-dev"
version = '2.0.5'
compileJava {
sourceCompatibility = targetCompatibility = "1.8"
}
repositories {
mavenCentral()
}
dependencies {
implementation 'com.formdev:flatlaf:2.0.1'
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'com.google.guava:guava:31.0.1-jre'
}
shadowJar {
archiveFileName = jar.archiveFileName
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
tasks {
build {
dependsOn(':shadowJar')
}
}
jar {
manifest {
attributes 'Main-Class': 'io.github.koxx12dev.universal.SkyclientUniversal'
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/*.DSA'
}