diff --git a/README.md b/README.md index bb1a2193..cb926bf8 100644 --- a/README.md +++ b/README.md @@ -24,12 +24,12 @@ Add the following Maven dependency: io.zonky.test embedded-postgres - 1.2.6 + 1.2.10 test ``` -The default version of the embedded postgres is `PostgreSQL 10.11`, but you can change it by following the instructions described in [Postgres version](#postgres-version). +The default version of the embedded postgres is `PostgreSQL 10.15`, but you can change it by following the instructions described in [Postgres version](#postgres-version). ## Basic Usage @@ -71,7 +71,7 @@ independent databases gives you. ## Postgres version -The default version of the embedded postgres is `PostgreSQL 10.11`, 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 10.15`, but it can be changed by importing `embedded-postgres-binaries-bom` in a required version into your dependency management section. ```xml @@ -79,7 +79,7 @@ The default version of the embedded postgres is `PostgreSQL 10.11`, but it can b io.zonky.test.postgres embedded-postgres-binaries-bom - 11.6.0 + 13.2.0 pom import @@ -97,7 +97,7 @@ The default version of the embedded postgres is `PostgreSQL 10.11`, but it can b configurations.all { resolutionStrategy.eachDependency { DependencyResolveDetails details -> if (details.requested.group == 'io.zonky.test.postgres') { - details.useVersion '11.6.0' + details.useVersion '13.2.0' } } } @@ -105,7 +105,7 @@ The default version of the embedded postgres is `PostgreSQL 10.11`, 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 { - implementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:11.6.0') + implementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:13.2.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: @@ -116,7 +116,7 @@ The default version of the embedded postgres is `PostgreSQL 10.11`, but it can b dependencyManagement { imports { - mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:11.6.0' + mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:13.2.0' } } diff --git a/pom.xml b/pom.xml index 35676593..8ddb9352 100644 --- a/pom.xml +++ b/pom.xml @@ -50,16 +50,12 @@ - - Roman Pichlik - roman.pichlik@zonky.cz - Tomas Vanek - tomas.vanek@zonky.cz + tomix26@gmail.com - Developers Zonky + Zonky Developers developers@zonky.cz