forked from ImpactDevelopment/Installer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
51 lines (44 loc) · 1.51 KB
/
build.gradle
File metadata and controls
51 lines (44 loc) · 1.51 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
/*
* This file is part of Impact Installer.
*
* Impact Installer is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Impact Installer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Impact Installer. If not, see <https://www.gnu.org/licenses/>.
*/
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '4.0.4'
}
group 'io.github.ImpactDevelopment'
version '1.0'
targetCompatibility = sourceCompatibility = JavaVersion.VERSION_1_8
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation 'org.bouncycastle:bcprov-jdk15on:1.60'
implementation 'org.bouncycastle:bcpg-jdk15on:1.60'
implementation 'commons-io:commons-io:2.6'
implementation 'org.apache.commons:commons-compress:1.18'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.atlassian.commonmark:commonmark:0.12.1'
implementation 'com.google.code.findbugs:jsr305:3.0.2'
}
jar {
manifest {
attributes(
'Main-Class': 'io.github.ImpactDevelopment.installer.Installer'
)
}
}
build.dependsOn(shadowJar)