-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
41 lines (36 loc) · 1.07 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
plugins {
id 'java'
}
group 'org.example'
version '1.0'
repositories {
mavenCentral()
}
jar{
manifestContentCharset 'utf-8'
metadataCharset 'utf-8'
zip64 = true
duplicatesStrategy = 'exclude'
manifest {
attributes "Main-Class": "com.gsat.Main"
attributes 'Multi-Release': 'true'
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
// {
// exclude "META-INF/*.SF"
// exclude "META-INF/*.DSA"
// exclude "META-INF/*.RSA"
// exclude "META-INF/*.txt"
// }
}
dependencies {
testImplementation group: 'junit', name: 'junit', version: '4.12'
implementation group: 'commons-cli', name: 'commons-cli', version: '1.4'
implementation group: 'org.reflections', name: 'reflections', version: '0.9.12'
implementation group: 'org.json', name: 'json', version: '20200518'
implementation group: 'me.tongfei', name: 'progressbar', version:'0.9.0'
// implementation project(":ghidra")
implementation fileTree(dir: 'lib', include: ['*jar'])
}