You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -26,12 +26,12 @@ Add the following Maven dependency:
26
26
<dependency>
27
27
<groupId>io.zonky.test</groupId>
28
28
<artifactId>embedded-postgres</artifactId>
29
-
<version>2.0.7</version>
29
+
<version>2.1.0</version>
30
30
<scope>test</scope>
31
31
</dependency>
32
32
```
33
33
34
-
The default version of the embedded postgres is `PostgreSQL 14.10`, but you can change it by following the instructions described in [Postgres version](#postgres-version).
34
+
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.10`, but it can be changed by importing `embedded-postgres-binaries-bom` in a required version into your dependency management section.
76
+
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.
if (details.requested.group == 'io.zonky.test.postgres') {
102
-
details.useVersion '16.2.0'
102
+
details.useVersion '17.2.0'
103
103
}
104
104
}
105
105
}
106
106
107
107
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:
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.10`, but it can b
0 commit comments