It turned out that most projects needed at least two of the utils projects. file-utils and byte-utils had only one class. Merging them made sense.
16 lines
297 B
Groovy
16 lines
297 B
Groovy
apply plugin: 'antlr'
|
|
|
|
dependencies {
|
|
implementation project(':pdb-api')
|
|
implementation project(':pdb-utils')
|
|
api project(':block-storage')
|
|
antlr lib_antlr
|
|
|
|
implementation lib_primitive_collections
|
|
implementation lib_commons_lang3
|
|
|
|
implementation lib_log4j2_slf4j_impl
|
|
}
|
|
|
|
|