-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathbuild.gradle
More file actions
33 lines (27 loc) · 775 Bytes
/
build.gradle
File metadata and controls
33 lines (27 loc) · 775 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
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.google.code.findbugs:jsr305:3.0.2'
}
jar {
manifest {
attributes(
'Main-Class': 'io.github.ImpactDevelopment.installer.Installer'
)
}
}
build.dependsOn(shadowJar)