Files
wson/wcfg/build.gradle
Walter Oggioni e23e12266e
All checks were successful
CI / build (push) Successful in 2m4s
updated dependencies
2026-03-12 21:40:56 +08:00

28 lines
456 B
Groovy

plugins {
id 'antlr'
id 'jacoco'
}
configurations {
api {
exclude group: 'org.antlr', module: 'antlr4'
}
}
dependencies {
implementation catalog.jwo
implementation rootProject
implementation catalog.antlr.runtime
antlr catalog.antlr
}
generateGrammarSource {
maxHeapSize = "64m"
arguments += ['-package', 'net.woggioni.wson.wcfg']
}
ext {
setProperty('jpms.module.name', 'net.woggioni.wson.wcfg')
}