This is an automated email from the ASF dual-hosted git repository.
ntimofeev pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cayenne.git
The following commit(s) were added to refs/heads/master by this push:
new ee8ffd1 Fix postgres-docker build
ee8ffd1 is described below
commit ee8ffd107b00b2c9a6e7a111b315ddf97f780289
Author: Nikita Timofeev <[email protected]>
AuthorDate: Wed Feb 19 12:46:16 2020 +0300
Fix postgres-docker build
---
pom.xml | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/pom.xml b/pom.xml
index 649f987..2a672e1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -869,7 +869,7 @@
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
- <version>0.31.0</version>
+ <version>0.33.0</version>
</plugin>
</plugins>
</pluginManagement>
@@ -1549,8 +1549,11 @@
<images>
<image>
<alias>db</alias>
-
<name>postgres:9.5</name>
+
<name>postgres:12</name>
<run>
+
<env>
+
<POSTGRES_HOST_AUTH_METHOD>trust</POSTGRES_HOST_AUTH_METHOD>
+
</env>
<ports>
<port>${db.host}:${db.port}:5432</port>
</ports>