dex2jar/d2j-jasmin/build.gradle

14 lines
422 B
Groovy
Raw Normal View History

apply plugin: 'antlr'
2014-07-21 14:11:55 +00:00
dependencies {
compile(group: 'org.antlr', name: 'antlr-runtime', version:'3.5.2') {
2014-07-21 14:11:55 +00:00
exclude(module: 'stringtemplate')
}
implementation group: 'org.ow2.asm', name: 'asm-tree', version: '9.5'
implementation group: 'org.ow2.asm', name: 'asm-util', version: '9.5'
2015-05-29 03:53:24 +00:00
compile project(':d2j-base-cmd')
antlr "org.antlr:antlr:3.5.2"
2014-07-21 14:11:55 +00:00
}
sourceSets.main.antlr.srcDirs = ['src/main/antlr3']