21 lines
411 B
Groovy
21 lines
411 B
Groovy
plugins {
|
|
id 'antlr'
|
|
}
|
|
|
|
dependencies {
|
|
implementation rootProject
|
|
runtimeOnly catalog.antlr.runtime
|
|
|
|
testImplementation catalog.jwo
|
|
testImplementation project(':test-utils')
|
|
testImplementation catalog.jackson.databind
|
|
testImplementation catalog.xz
|
|
|
|
antlr catalog.antlr
|
|
}
|
|
|
|
generateGrammarSource {
|
|
maxHeapSize = "64m"
|
|
arguments += ['-package', 'net.woggioni.wson.antlr']
|
|
}
|