From b2c8bccb09569add38f71fd1f1c8fc9d8e516712 Mon Sep 17 00:00:00 2001
From: Valery Kharseko <vharseko@3a-systems.ru>
Date: Wed, 25 Dec 2024 14:00:00 +0000
Subject: [PATCH] Store LDAPv3 database in SQL JDBC database (#454)

---
 opendj-server-legacy/pom.xml |   31 ++++++++++++-------------------
 1 files changed, 12 insertions(+), 19 deletions(-)

diff --git a/opendj-server-legacy/pom.xml b/opendj-server-legacy/pom.xml
index 97008f7..8d75ab8 100644
--- a/opendj-server-legacy/pom.xml
+++ b/opendj-server-legacy/pom.xml
@@ -259,6 +259,11 @@
 	    </exclusions>
     </dependency>
     <dependency>
+      <groupId>org.postgresql</groupId>
+      <artifactId>postgresql</artifactId>
+      <version>42.7.4</version>
+    </dependency>
+    <dependency>
       <groupId>org.testng</groupId>
       <artifactId>testng</artifactId>
       <scope>test</scope>
@@ -267,7 +272,13 @@
     <dependency>
       <groupId>org.testcontainers</groupId>
       <artifactId>cassandra</artifactId>
-      <version>1.19.0</version>
+      <version>1.20.4</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.testcontainers</groupId>
+      <artifactId>postgresql</artifactId>
+      <version>1.20.4</version>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -1082,24 +1093,6 @@
         </executions>
       </plugin>
 
-      <!-- Build javadoc -->
-      <plugin>
-        <groupId>org.openidentityplatform.maven.plugins</groupId>
-        <artifactId>javadoc-updater-maven-plugin</artifactId>
-        <version>1.0.0</version>
-        <executions>
-          <execution>
-            <phase>site</phase>
-            <goals>
-              <goal>fixjavadoc</goal>
-            </goals>
-            <configuration>
-              <directory>${project.build.directory}/site/javadoc</directory>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-
       <!-- Release project -->
       <plugin>
         <groupId>org.apache.maven.plugins</groupId>

--
Gitblit v1.10.0