diff --git a/README.md b/README.md
index 54d91e0a..0e006716 100644
--- a/README.md
+++ b/README.md
@@ -26,12 +26,12 @@ Add the following Maven dependency:
io.zonky.test
embedded-postgres
- 2.1.0
+ 2.1.1
test
```
-The default version of the embedded postgres is `PostgreSQL 14.15`, but you can change it by following the instructions described in [Postgres version](#postgres-version).
+The default version of the embedded postgres is `PostgreSQL 14.19`, but you can change it by following the instructions described in [Postgres version](#postgres-version).
## Basic Usage
@@ -73,7 +73,7 @@ independent databases gives you.
## Postgres version
-The default version of the embedded postgres is `PostgreSQL 14.15`, but it can be changed by importing `embedded-postgres-binaries-bom` in a required version into your dependency management section.
+The default version of the embedded postgres is `PostgreSQL 14.19`, but it can be changed by importing `embedded-postgres-binaries-bom` in a required version into your dependency management section.
```xml
@@ -81,7 +81,7 @@ The default version of the embedded postgres is `PostgreSQL 14.15`, but it can b
io.zonky.test.postgres
embedded-postgres-binaries-bom
- 17.2.0
+ 17.6.0
pom
import
@@ -99,7 +99,7 @@ The default version of the embedded postgres is `PostgreSQL 14.15`, but it can b
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'io.zonky.test.postgres') {
- details.useVersion '17.2.0'
+ details.useVersion '17.6.0'
}
}
}
@@ -107,7 +107,7 @@ The default version of the embedded postgres is `PostgreSQL 14.15`, but it can b
2. If you use Gradle 5+, [Maven BOMs are supported out of the box](https://docs.gradle.org/5.0/userguide/managing_transitive_dependencies.html#sec:bom_import), so you can import the bom:
dependencies {
- testImplementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:17.2.0')
+ testImplementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:17.6.0')
}
3. Or, you can use [Spring's dependency management plugin](https://docs.spring.io/dependency-management-plugin/docs/current/reference/html/#dependency-management-configuration-bom-import) that provides Maven-like dependency management to Gradle:
@@ -118,7 +118,7 @@ The default version of the embedded postgres is `PostgreSQL 14.15`, but it can b
dependencyManagement {
imports {
- mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:17.2.0'
+ mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:17.6.0'
}
}
diff --git a/pom.xml b/pom.xml
index 33b1105a..30d47d05 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@
UTF-8
UTF-8
- 14.15.0
+ 14.19.0
1.17.1
1.26.2
2.16.1