Upgrade to Postgresql 42.2.13

Closes gh-21859
This commit is contained in:
Andy Wilkinson
2020-06-10 12:49:53 +01:00
parent bf83e237ea
commit 6e68101b9f
5 changed files with 17 additions and 5 deletions

View File

@@ -1380,7 +1380,7 @@ bom {
]
}
}
library("Postgresql", "42.2.12") {
library("Postgresql", "42.2.13") {
group("org.postgresql") {
modules = [
"postgresql"

View File

@@ -60,7 +60,10 @@ dependencies {
testImplementation("org.hsqldb:hsqldb")
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.mockito:mockito-core")
testImplementation("org.postgresql:postgresql")
testImplementation("org.postgresql:postgresql") {
exclude group: "org.osgi"
exclude group: "com.github.waffle", module: "waffle-jna"
}
testImplementation("org.springframework:spring-test")
testImplementation("org.springframework:spring-webmvc")
testImplementation("org.springframework:spring-websocket")

View File

@@ -97,7 +97,10 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter")
testImplementation("org.mariadb.jdbc:mariadb-java-client")
testImplementation("org.mockito:mockito-core")
testImplementation("org.postgresql:postgresql")
testImplementation("org.postgresql:postgresql") {
exclude group: "org.osgi"
exclude group: "com.github.waffle", module: "waffle-jna"
}
testImplementation("org.springframework:spring-context-support")
testImplementation("org.springframework.data:spring-data-redis")
testImplementation("org.springframework.data:spring-data-r2dbc")

View File

@@ -11,7 +11,10 @@ dependencies {
runtimeOnly("io.r2dbc:r2dbc-postgresql")
runtimeOnly("org.flywaydb:flyway-core")
runtimeOnly("org.postgresql:postgresql")
runtimeOnly("org.postgresql:postgresql") {
exclude group: "org.osgi"
exclude group: "com.github.waffle", module: "waffle-jna"
}
runtimeOnly("org.springframework:spring-jdbc")
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))

View File

@@ -11,7 +11,10 @@ dependencies {
runtimeOnly("io.r2dbc:r2dbc-postgresql")
runtimeOnly("org.liquibase:liquibase-core")
runtimeOnly("org.postgresql:postgresql")
runtimeOnly("org.postgresql:postgresql") {
exclude group: "org.osgi"
exclude group: "com.github.waffle", module: "waffle-jna"
}
runtimeOnly("org.springframework:spring-jdbc")
testImplementation(project(":spring-boot-project:spring-boot-starters:spring-boot-starter-test"))