merge projects file-utils, byte-utils and pdb-utils
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.
This commit is contained in:
@@ -5,8 +5,6 @@ System.out.println(dependencies.class);
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api lib_primitive_collections
|
api lib_primitive_collections
|
||||||
implementation project(':byte-utils')
|
|
||||||
implementation project(':file-utils')
|
|
||||||
implementation project(':pdb-utils')
|
implementation project(':pdb-utils')
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
7
byte-utils/.gitignore
vendored
7
byte-utils/.gitignore
vendored
@@ -1,7 +0,0 @@
|
|||||||
/.settings/
|
|
||||||
/.classpath
|
|
||||||
/.project
|
|
||||||
/bin/
|
|
||||||
/build/
|
|
||||||
/target/
|
|
||||||
/test-output/
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
dependencies {
|
|
||||||
implementation lib_log4j2_slf4j_impl
|
|
||||||
implementation lib_primitive_collections
|
|
||||||
}
|
|
||||||
@@ -2,10 +2,8 @@ apply plugin: 'antlr'
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':pdb-api')
|
implementation project(':pdb-api')
|
||||||
implementation project(':file-utils')
|
|
||||||
implementation project(':pdb-utils')
|
implementation project(':pdb-utils')
|
||||||
api project(':block-storage')
|
api project(':block-storage')
|
||||||
implementation project(':byte-utils')
|
|
||||||
antlr lib_antlr
|
antlr lib_antlr
|
||||||
|
|
||||||
implementation lib_primitive_collections
|
implementation lib_primitive_collections
|
||||||
|
|||||||
7
file-utils/.gitignore
vendored
7
file-utils/.gitignore
vendored
@@ -1,7 +0,0 @@
|
|||||||
/.settings/
|
|
||||||
/.classpath
|
|
||||||
/.project
|
|
||||||
/bin/
|
|
||||||
/build/
|
|
||||||
/target/
|
|
||||||
/test-output/
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
dependencies {
|
|
||||||
implementation lib_log4j2_slf4j_impl
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,5 @@
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':byte-utils')
|
|
||||||
implementation project(':pdb-utils')
|
implementation project(':pdb-utils')
|
||||||
implementation project(':file-utils')
|
|
||||||
implementation lib_primitive_collections
|
implementation lib_primitive_collections
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':performanceDb')
|
implementation project(':performanceDb')
|
||||||
implementation project(':file-utils')
|
|
||||||
implementation project(':pdb-utils')
|
implementation project(':pdb-utils')
|
||||||
implementation lib_primitive_collections
|
implementation lib_primitive_collections
|
||||||
implementation lib_jackson_databind
|
implementation lib_jackson_databind
|
||||||
|
|||||||
@@ -14,7 +14,6 @@ dependencies {
|
|||||||
implementation project(':pdb-plotting')
|
implementation project(':pdb-plotting')
|
||||||
implementation project(':pdb-js')
|
implementation project(':pdb-js')
|
||||||
implementation project(':pdb-utils')
|
implementation project(':pdb-utils')
|
||||||
implementation project(':file-utils')
|
|
||||||
|
|
||||||
implementation lib_commons_lang3
|
implementation lib_commons_lang3
|
||||||
implementation lib_primitive_collections
|
implementation lib_primitive_collections
|
||||||
@@ -27,7 +26,6 @@ dependencies {
|
|||||||
testImplementation(lib_spring_boot_test){
|
testImplementation(lib_spring_boot_test){
|
||||||
exclude module: 'spring-boot-starter-logging'
|
exclude module: 'spring-boot-starter-logging'
|
||||||
}
|
}
|
||||||
testImplementation project(':file-utils')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
jar {
|
jar {
|
||||||
|
|||||||
@@ -2,11 +2,10 @@
|
|||||||
dependencies {
|
dependencies {
|
||||||
api project(':pdb-api')
|
api project(':pdb-api')
|
||||||
api project(':data-store')
|
api project(':data-store')
|
||||||
implementation project(':file-utils')
|
implementation project(':pdb-utils')
|
||||||
implementation lib_jackson_databind
|
implementation lib_jackson_databind
|
||||||
implementation lib_commons_collections4
|
implementation lib_commons_collections4
|
||||||
|
|
||||||
implementation lib_log4j2_core
|
implementation lib_log4j2_core
|
||||||
implementation lib_log4j2_slf4j_impl
|
implementation lib_log4j2_slf4j_impl
|
||||||
testImplementation project(':pdb-utils')
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user