Files
jadx/jadx-core/build.gradle
T
Nico Mexis f681c8963d fix: use maven-publish for JitPack and other fixes (PR #1242)
* Update dependencies
* Fix spaces in file paths
* Update Gradle for LGTM
* Update spotless
* Fix Jitpack

Co-authored-by: Skylot <skylot@gmail.com>
2021-08-27 19:05:52 +03:00

25 lines
638 B
Groovy

plugins {
id 'java-library'
}
dependencies {
api(project(':jadx-plugins:jadx-plugins-api'))
implementation 'com.google.code.gson:gson:2.8.8'
implementation 'com.android.tools.build:aapt2-proto:4.2.1-7147631'
testImplementation 'org.apache.commons:commons-lang3:3.12.0'
testImplementation 'org.ow2.asm:asm:9.2'
testImplementation 'org.ow2.asm:asm-util:9.2'
testRuntimeOnly(project(':jadx-plugins:jadx-dex-input'))
testRuntimeOnly(project(':jadx-plugins:jadx-smali-input'))
testRuntimeOnly(project(':jadx-plugins:jadx-java-convert'))
testRuntimeOnly(project(':jadx-plugins:jadx-java-input'))
}
test {
exclude '**/tmp/*'
}