build.gradle 638 字节
Newer Older
1 2 3 4
plugins {
	id 'java-library'
}

S
Skylot 已提交
5
dependencies {
6
	api(project(':jadx-plugins:jadx-plugins-api'))
7

S
Skylot 已提交
8
	implementation 'com.google.code.gson:gson:2.8.7'
9
	implementation 'com.android.tools.build:aapt2-proto:4.2.1-7147631'
10

S
Skylot 已提交
11
	testImplementation 'org.apache.commons:commons-lang3:3.12.0'
12

13 14 15
	testImplementation 'org.ow2.asm:asm:9.2'
	testImplementation 'org.ow2.asm:asm-util:9.2'

16
	testRuntimeOnly(project(':jadx-plugins:jadx-dex-input'))
17
	testRuntimeOnly(project(':jadx-plugins:jadx-smali-input'))
18
	testRuntimeOnly(project(':jadx-plugins:jadx-java-convert'))
S
Skylot 已提交
19
	testRuntimeOnly(project(':jadx-plugins:jadx-java-input'))
S
Skylot 已提交
20
}
S
Skylot 已提交
21 22 23 24

test {
	exclude '**/tmp/*'
}