mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-23 13:19:46 +00:00
20 lines
485 B
Groovy
20 lines
485 B
Groovy
apply plugin: 'antlr'
|
|
|
|
dependencies {
|
|
compile 'org.antlr:antlr4-runtime:4.5'
|
|
compile project(':dex-reader')
|
|
antlr 'org.antlr:antlr4:4.5'
|
|
compile project(':d2j-base-cmd')
|
|
compile project(':dex-writer')
|
|
testCompile 'org.smali:baksmali:2.0.6'
|
|
}
|
|
|
|
generateGrammarSource {
|
|
arguments += ['-no-listener', '-visitor','-package','com.googlecode.d2j.smali.antlr4']
|
|
}
|
|
|
|
sourceSets {
|
|
test.output.resourcesDir = "build/classes/test"
|
|
main.antlr.srcDirs = ['src/main/antlr4']
|
|
}
|