Files
wson/wcfg/build.gradle
Walter Oggioni dcb0065a5b
Some checks failed
CI / build (push) Failing after 43s
added publications
2024-04-04 09:18:44 +08:00

29 lines
500 B
Groovy

plugins {
id 'antlr'
id 'jacoco'
alias catalog.plugins.multi.release.jar
}
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')
}