forked from alexzaitsev/apk-dependency-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
30 lines (30 loc) · 780 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
plugins {
id 'java'
id 'com.adarshr.test-logger' version '1.7.0' // https://github.com/radarsh/gradle-test-logger-plugin
}
repositories {
mavenCentral()
}
jar {
manifest {
attributes(
'Main-Class': 'com.alex_zaitsev.adg.Main'
)
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
testlogger {
theme 'standard-parallel' // theme
slowThreshold 0 // show time
}
clean {
delete = ['build']
}
dependencies {
implementation 'org.smali:baksmali:2.2.5' // runtime dependency
testImplementation 'org.hamcrest:hamcrest:2.1' // test dependency
testImplementation 'junit:junit:4.12' // test dependency
implementation 'org.apache.commons:commons-lang3:3.11' // used to determine OS
}