forked from seal-hub/ERCatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (42 loc) · 1.34 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
plugins {
id 'java'
}
group 'com.ercatcher.ercatcher'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
maven {
url 'https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-snapshot/'
}
maven {
url 'https://soot-build.cs.uni-paderborn.de/nexus/repository/soot-release/'
}
}
processResources {
from ('public') {
into 'public'
}
}
jar {
manifest {
attributes 'Main-Class': 'com.ercatcher.Main'
}
from { (configurations.compile).collect { it.isDirectory() ? it : zipTree(it) } }
}
dependencies {
compile fileTree(dir: 'lib', include: '*.jar')
compile ([group: 'ca.mcgill.sable', name: 'soot', version: '4.0.0'])
compile ([group: 'org.apache.commons', name: 'commons-csv', version: '1.4'])
// compile 'de.tud.sse:soot-infoflow:2.7.3-SNAPSHOT'
// compile 'de.tud.sse:soot-infoflow-android:2.7.3-SNAPSHOT'
// compile 'de.tud.sse:soot-infoflow-cmd:2.7.3-SNAPSHOT'
// compile 'de.tud.sse:soot-infoflow-summaries:2.7.3-SNAPSHOT'
compile ('org.slf4j:slf4j-nop:1.7.5')
compile('log4j:log4j:1.2.15') {
exclude group: 'javax.jms', module: 'jms'
exclude group: 'com.sun.jdmk', module: 'jmxtools'
exclude group: 'com.sun.jmx', module: 'jmxri'
}
testCompile group: 'junit', name: 'junit', version: '4.12'
}