21 lines
494 B
Groovy
21 lines
494 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-plugins:jadx-plugins-api"))
|
|
|
|
// TODO: finish own smali printer
|
|
implementation 'org.smali:baksmali:2.5.2'
|
|
// force latest version for smali
|
|
constraints {
|
|
implementation 'com.google.guava:guava:30.1.1-jre'
|
|
implementation 'com.beust:jcommander:1.81'
|
|
}
|
|
|
|
// compile smali files in tests
|
|
testImplementation('org.smali:smali:2.5.2') {
|
|
exclude(group: 'junit', module: 'junit') // ignore junit 4 transitive dependency
|
|
}
|
|
}
|