@@ -241,7 +241,9 @@ project(':wres-system') {
241
241
implementation ' org.apache.commons:commons-lang3:3.17.0'
242
242
243
243
// to use native postgres copy, need this on compile, otherwise runtime
244
- implementation(' org.postgresql:postgresql:42.7.5' ) {
244
+ // Bumping this past this version causes massive slowdowns, see this ticket for more information
245
+ // https://github.com/NOAA-OWP/wres/issues/454
246
+ implementation(' org.postgresql:postgresql:42.7.4' ) {
245
247
// Not used at runtime, bloat
246
248
exclude group : ' org.checkerframework' , module : ' checker-qual'
247
249
}
@@ -362,7 +364,9 @@ project(':wres-io') {
362
364
implementation ' com.google.guava:guava:33.4.0-jre'
363
365
364
366
// to use native postgres copy, need this on compile, otherwise runtime
365
- implementation(' org.postgresql:postgresql:42.7.5' ) {
367
+ // Bumping this past this version causes massive slowdowns, see this ticket for more information
368
+ // https://github.com/NOAA-OWP/wres/issues/454
369
+ implementation(' org.postgresql:postgresql:42.7.4' ) {
366
370
// Not used at runtime, bloat
367
371
exclude group : ' org.checkerframework' , module : ' checker-qual'
368
372
}
@@ -389,7 +393,9 @@ project(':wres-io') {
389
393
implementation group : ' org.locationtech.jts' , name : ' jts-core' , version : ' 1.20.0'
390
394
implementation group : ' org.locationtech.jts' , name : ' jts-io' , version : ' 1.20.0' , ext : ' pom'
391
395
392
- implementation ' org.liquibase:liquibase-core:4.31.0'
396
+ // Bumping this past this version causes massive slowdowns, see this ticket for more information
397
+ // https://github.com/NOAA-OWP/wres/issues/454
398
+ implementation ' org.liquibase:liquibase-core:4.29.2'
393
399
394
400
// Use instead of the bridge between JUL and SLF4J. #60801-283
395
401
runtimeOnly ' com.mattbertolini:liquibase-slf4j:5.1.0'
@@ -611,7 +617,9 @@ project(':wres-reading') {
611
617
612
618
implementation group : ' org.apache.commons' , name : ' commons-collections4' , version : ' 4.5.0-M3'
613
619
614
- implementation ' org.liquibase:liquibase-core:4.31.0'
620
+ // Bumping this past this version causes massive slowdowns, see this ticket for more information
621
+ // https://github.com/NOAA-OWP/wres/issues/454
622
+ implementation ' org.liquibase:liquibase-core:4.29.2'
615
623
616
624
// Use instead of the bridge between JUL and SLF4J. #60801-283
617
625
runtimeOnly ' com.mattbertolini:liquibase-slf4j:5.1.0'
0 commit comments