Skip to content

Commit

Permalink
Upgrading PostgreSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgrosso committed Sep 28, 2024
1 parent cc46249 commit a2b61e8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public void saveWithLdapRepo() {
public void saveWithJDBCRepo() {
JDBCAttrRepoConf conf = new JDBCAttrRepoConf();
conf.setSql("SELECT * FROM table WHERE name=?");
conf.setUrl("jdbc:tc:postgresql:16-alpine:///db");
conf.setUrl("jdbc:h2:mem:syncopedb;DB_CLOSE_DELAY=-1");
conf.setUser("username");
conf.setPassword("password");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ services:
restart: always

db:
image: postgres:16-alpine
image: postgres:17-alpine
restart: always
environment:
POSTGRES_DB: syncope
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

services:
db:
image: postgres:16-alpine
image: postgres:17-alpine
restart: always
environment:
POSTGRES_DB: syncope
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

services:
db:
image: postgres:16-alpine
image: postgres:17-alpine
restart: always
environment:
POSTGRES_DB: syncope
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ under the License.
<zookeeper.version>3.9.2</zookeeper.version>

<zonky.embedded-postgres.version>2.0.7</zonky.embedded-postgres.version>
<zonky.embedded-postgres-binaries.version>16.4.0</zonky.embedded-postgres-binaries.version>
<zonky.embedded-postgres-binaries.version>17.0.0</zonky.embedded-postgres-binaries.version>

<testds.rootDn>o=isp</testds.rootDn>
<testds.bindDn>uid=admin,ou=system</testds.bindDn>
Expand Down Expand Up @@ -499,7 +499,7 @@ under the License.
<payara.version>6.2024.9</payara.version>
<jakarta.faces.version>4.1.1</jakarta.faces.version>

<docker.postgresql.version>16-alpine</docker.postgresql.version>
<docker.postgresql.version>17-alpine</docker.postgresql.version>
<docker.mysql.version>9.0</docker.mysql.version>
<docker.mariadb.version>11</docker.mariadb.version>
<docker.oracle.version>23-slim-faststart</docker.oracle.version>
Expand Down Expand Up @@ -2088,7 +2088,7 @@ under the License.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.6</version>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down

0 comments on commit a2b61e8

Please sign in to comment.