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

17 lines
271 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']
}