mirror of
https://github.com/pxb1988/dex2jar.git
synced 2024-11-23 13:19:46 +00:00
7a14729a4c
--HG-- branch : 2.x
13 lines
322 B
Groovy
13 lines
322 B
Groovy
apply plugin: 'antlr'
|
|
|
|
dependencies {
|
|
compile(group: 'org.antlr', name: 'antlr-runtime', version:'3.5.2') {
|
|
exclude(module: 'stringtemplate')
|
|
}
|
|
compile "org.ow2.asm:asm-debug-all:5.0.3"
|
|
compile project(':d2j-base-cmd')
|
|
antlr "org.antlr:antlr:3.5.2"
|
|
}
|
|
|
|
sourceSets.main.antlr.srcDirs = ['src/main/antlr3']
|