forked from flankerhqd/JAADAS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (36 loc) · 909 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
34
35
36
37
38
39
40
41
42
43
apply plugin: 'scala'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'eu.appsatori:gradle-fatjar-plugin:0.3'
}
}
apply plugin: 'eu.appsatori.fatjar'
repositories {
mavenCentral()
}
sourceSets {
main {
scala {
srcDirs = ['src/main/scala', 'src/main/java']
}
java {
srcDirs = []
}
}
}
dependencies {
compile 'org.scala-lang:scala-library:2.11.4'
compile files('../heros/heros-trunk.jar', '../jasmin/lib/jasminclasses-2.2.1.jar','../soot/lib/soot-trunk.jar', '../soot-infoflow/build/jar/soot-infoflow.jar', '../soot-infoflow-android/build/jar/soot-infoflow-android.jar')
compile fileTree(dir: 'libs', include: '*.jar')
}
version = '0.1'
fatJar {
manifest {
attributes(
"Main-Class": 'main'
)
}
}