Skip to content

Commit 60b2317

Browse files
committed
update readme
1 parent ef2b14e commit 60b2317

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ Add the following Maven dependency:
2424
<dependency>
2525
<groupId>io.zonky.test</groupId>
2626
<artifactId>embedded-postgres</artifactId>
27-
<version>1.2.10</version>
27+
<version>1.3.1</version>
2828
<scope>test</scope>
2929
</dependency>
3030
```
3131

32-
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).
32+
The default version of the embedded postgres is `PostgreSQL 10.18`, but you can change it by following the instructions described in [Postgres version](#postgres-version).
3333

3434
## Basic Usage
3535

@@ -71,15 +71,15 @@ independent databases gives you.
7171

7272
## Postgres version
7373

74-
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.
74+
The default version of the embedded postgres is `PostgreSQL 10.18`, but it can be changed by importing `embedded-postgres-binaries-bom` in a required version into your dependency management section.
7575

7676
```xml
7777
<dependencyManagement>
7878
<dependencies>
7979
<dependency>
8080
<groupId>io.zonky.test.postgres</groupId>
8181
<artifactId>embedded-postgres-binaries-bom</artifactId>
82-
<version>13.2.0</version>
82+
<version>13.4.0</version>
8383
<type>pom</type>
8484
<scope>import</scope>
8585
</dependency>
@@ -97,15 +97,15 @@ The default version of the embedded postgres is `PostgreSQL 10.15`, but it can b
9797
configurations.all {
9898
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
9999
if (details.requested.group == 'io.zonky.test.postgres') {
100-
details.useVersion '13.2.0'
100+
details.useVersion '13.4.0'
101101
}
102102
}
103103
}
104104

105105
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:
106106

107107
dependencies {
108-
implementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:13.2.0')
108+
implementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:13.4.0')
109109
}
110110

111111
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.15`, but it can b
116116
117117
dependencyManagement {
118118
imports {
119-
mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:13.2.0'
119+
mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:13.4.0'
120120
}
121121
}
122122

0 commit comments

Comments
 (0)