fix: 🐛 Added missing PostgreSQL dependency
Added dependency to be able to use PSQL connectorpull/1580/head
parent
2b94aff58e
commit
e12c164b46
|
@ -131,6 +131,10 @@
|
||||||
<groupId>org.mariadb.jdbc</groupId>
|
<groupId>org.mariadb.jdbc</groupId>
|
||||||
<artifactId>mariadb-java-client</artifactId>
|
<artifactId>mariadb-java-client</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.postgresql</groupId>
|
||||||
|
<artifactId>postgresql</artifactId>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.directory.api</groupId>
|
<groupId>org.apache.directory.api</groupId>
|
||||||
<artifactId>api-all</artifactId>
|
<artifactId>api-all</artifactId>
|
||||||
|
|
6
pom.xml
6
pom.xml
|
@ -115,6 +115,7 @@
|
||||||
<spring-aop.version>4.3.30.RELEASE</spring-aop.version>
|
<spring-aop.version>4.3.30.RELEASE</spring-aop.version>
|
||||||
<spring-context.version>4.3.30.RELEASE</spring-context.version>
|
<spring-context.version>4.3.30.RELEASE</spring-context.version>
|
||||||
<spring-security-saml2.version>1.0.10.RELEASE</spring-security-saml2.version>
|
<spring-security-saml2.version>1.0.10.RELEASE</spring-security-saml2.version>
|
||||||
|
<postgresql.version>42.3.1</postgresql.version>
|
||||||
<!-- BUILD -->
|
<!-- BUILD -->
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<java-version>8</java-version>
|
<java-version>8</java-version>
|
||||||
|
@ -190,6 +191,11 @@
|
||||||
<version>${hsqldb.version}</version>
|
<version>${hsqldb.version}</version>
|
||||||
<scope>test</scope>
|
<scope>test</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.postgresql</groupId>
|
||||||
|
<artifactId>postgresql</artifactId>
|
||||||
|
<version>${postgresql.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.persistence</groupId>
|
<groupId>org.eclipse.persistence</groupId>
|
||||||
<artifactId>org.eclipse.persistence.jpa</artifactId>
|
<artifactId>org.eclipse.persistence.jpa</artifactId>
|
||||||
|
|
Loading…
Reference in New Issue