forked from adv0r/wallahack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
33 lines (27 loc) · 985 Bytes
/
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
apply plugin: 'java'
sourceCompatibility = 1.7
version = '1.0'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.jsoup:jsoup:1.7.3'
testImplementation group: 'junit', name: 'junit', version: '4.11'
implementation 'args4j:args4j-site:2.0.25'
implementation group: 'args4j', name: 'args4j', version: '2.0.25'
implementation group: 'args4j', name: 'args4j-site', version: '2.0.25'
//logging
implementation 'org.slf4j:slf4j-api:1.7.7'
implementation 'ch.qos.logback:logback-core:1.1.2'
implementation 'ch.qos.logback:logback-classic:1.1.2'
implementation 'org.codehaus.janino:janino:2.7.8' //for filtering
}
jar {
manifest {
attributes 'Main-Class': 'io.adva.wallhack.launch.MainLauncher'
}
doFirst {
from { configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) } }
}
exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
}