20 lines
419 B
Groovy
20 lines
419 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
api(project(':jadx-plugins:jadx-plugins-api'))
|
|
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
|
|
testImplementation 'org.apache.commons:commons-lang3:3.11'
|
|
|
|
testRuntimeOnly(project(':jadx-plugins:jadx-dex-input'))
|
|
testRuntimeOnly(project(':jadx-plugins:jadx-smali-input'))
|
|
testRuntimeOnly(project(':jadx-plugins:jadx-java-convert'))
|
|
}
|
|
|
|
test {
|
|
exclude '**/tmp/*'
|
|
}
|