Files
wson/wcfg/build.gradle
2023-10-03 15:02:19 +08:00

16 lines
270 B
Groovy

plugins {
id 'antlr'
}
dependencies {
implementation catalog.jwo
implementation rootProject
antlr catalog.antlr
antlr catalog.antlr.runtime
}
generateGrammarSource {
maxHeapSize = "64m"
arguments += ['-package', 'net.woggioni.wson.wcfg']
}