2015-12-03 15:06:24 +00:00
|
|
|
apply plugin: 'antlr'
|
|
|
|
|
2014-07-21 14:11:55 +00:00
|
|
|
dependencies {
|
2014-12-02 09:40:38 +00:00
|
|
|
compile(group: 'org.antlr', name: 'antlr-runtime', version:'3.5.2') {
|
2014-07-21 14:11:55 +00:00
|
|
|
exclude(module: 'stringtemplate')
|
|
|
|
}
|
2023-08-30 13:25:55 +00:00
|
|
|
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')
|
2015-12-03 15:06:24 +00:00
|
|
|
antlr "org.antlr:antlr:3.5.2"
|
2014-07-21 14:11:55 +00:00
|
|
|
}
|
|
|
|
|
2015-12-03 15:06:24 +00:00
|
|
|
sourceSets.main.antlr.srcDirs = ['src/main/antlr3']
|