Skip to content

Commit 6b85d71

Browse files
committed
update readme
1 parent 71721ff commit 6b85d71

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Add the following Maven dependency:
2424
<dependency>
2525
<groupId>io.zonky.test</groupId>
2626
<artifactId>embedded-postgres</artifactId>
27-
<version>2.0.6</version>
27+
<version>2.0.7</version>
2828
<scope>test</scope>
2929
</dependency>
3030
```
@@ -79,7 +79,7 @@ The default version of the embedded postgres is `PostgreSQL 14.10`, but it can b
7979
<dependency>
8080
<groupId>io.zonky.test.postgres</groupId>
8181
<artifactId>embedded-postgres-binaries-bom</artifactId>
82-
<version>16.1.0</version>
82+
<version>16.2.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 14.10`, but it can b
9797
configurations.all {
9898
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
9999
if (details.requested.group == 'io.zonky.test.postgres') {
100-
details.useVersion '16.1.0'
100+
details.useVersion '16.2.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-
testImplementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:16.1.0')
108+
testImplementation enforcedPlatform('io.zonky.test.postgres:embedded-postgres-binaries-bom:16.2.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 14.10`, but it can b
116116
117117
dependencyManagement {
118118
imports {
119-
mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:16.1.0'
119+
mavenBom 'io.zonky.test.postgres:embedded-postgres-binaries-bom:16.2.0'
120120
}
121121
}
122122

0 commit comments

Comments
 (0)