18 lines
332 B
Groovy
18 lines
332 B
Groovy
|
|
apply plugin: 'antlr'
|
|
|
|
dependencies {
|
|
compile 'org.apache.commons:commons-collections4:4.1'
|
|
runtime "org.antlr:antlr4:4.5.3"
|
|
antlr "org.antlr:antlr4:4.5.3" // use ANTLR version 4
|
|
}
|
|
|
|
sourceSets {
|
|
generated{
|
|
java.srcDir "build/generated-src/antlr/main"
|
|
}
|
|
}
|
|
compileJava{
|
|
source += sourceSets.generated.java
|
|
}
|