Files
perfdb/data-store/build.gradle
Andreas Huber 82b8a8a932 reduce memory footprint by lazily intializing the path in Doc
The path in Doc is not optional. This reduces memory consumption,
because we only have to store a long (the offset in the listing file).
This assumes, that only a small percentage of Docs is requested.
2018-05-06 12:58:10 +02:00

18 lines
454 B
Groovy

apply plugin: 'antlr'
dependencies {
compile project(':pdb-api')
compile project(':file-utils')
compile project(':pdb-utils')
antlr "org.antlr:antlr4:4.7.1"
compile 'org.lucares:primitiveCollections:0.1.20171228131833'
compile 'org.apache.commons:commons-lang3:3.7'
compile 'com.google.guava:guava:24.1-jre'
compile 'org.apache.logging.log4j:log4j-core:2.10.0'
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.10.0'
}