Files
perfdb/pdb-keyword-db/build.gradle
Andreas Huber ba2076cbb5 check performance with primitive ints instead of strings as doc id
Queries can be done in less than a millisecond even for hundreds of
thousands of documents.
2017-02-04 10:11:09 +01:00

18 lines
317 B
Groovy

apply plugin: 'antlr'
dependencies {
compile 'org.lucares:primitiveCollections:0.1.20170203201705'
runtime "org.antlr:antlr4:4.5.3"
antlr "org.antlr:antlr4:4.5.3"
}
sourceSets {
generated{
java.srcDir "build/generated-src/antlr/main"
}
}
compileJava{
source += sourceSets.generated.java
}