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.
15 lines
234 B
Groovy
15 lines
234 B
Groovy
//apply plugin: 'antlr'
|
|
//apply plugin: 'java'
|
|
|
|
System.out.println(dependencies.class);
|
|
|
|
dependencies {
|
|
api lib_primitive_collections
|
|
implementation project(':pdb-utils')
|
|
|
|
|
|
implementation lib_log4j2_slf4j_impl
|
|
}
|
|
|
|
|