Skip to content
This repository was archived by the owner on Sep 28, 2022. It is now read-only.

Commit e12c164

Browse files
author
Dominik Frantisek Bucik
committed
fix: 🐛 Added missing PostgreSQL dependency
Added dependency to be able to use PSQL connector
1 parent 2b94aff commit e12c164

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

perun-oidc-server/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,10 @@
131131
<groupId>org.mariadb.jdbc</groupId>
132132
<artifactId>mariadb-java-client</artifactId>
133133
</dependency>
134+
<dependency>
135+
<groupId>org.postgresql</groupId>
136+
<artifactId>postgresql</artifactId>
137+
</dependency>
134138
<dependency>
135139
<groupId>org.apache.directory.api</groupId>
136140
<artifactId>api-all</artifactId>

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@
115115
<spring-aop.version>4.3.30.RELEASE</spring-aop.version>
116116
<spring-context.version>4.3.30.RELEASE</spring-context.version>
117117
<spring-security-saml2.version>1.0.10.RELEASE</spring-security-saml2.version>
118+
<postgresql.version>42.3.1</postgresql.version>
118119
<!-- BUILD -->
119120
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
120121
<java-version>8</java-version>
@@ -190,6 +191,11 @@
190191
<version>${hsqldb.version}</version>
191192
<scope>test</scope>
192193
</dependency>
194+
<dependency>
195+
<groupId>org.postgresql</groupId>
196+
<artifactId>postgresql</artifactId>
197+
<version>${postgresql.version}</version>
198+
</dependency>
193199
<dependency>
194200
<groupId>org.eclipse.persistence</groupId>
195201
<artifactId>org.eclipse.persistence.jpa</artifactId>

0 commit comments

Comments
 (0)