diff --git a/pom.xml b/pom.xml
index f82d7d9..3ca3cb7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -7,34 +7,34 @@
iudx-file-server
- 4.5.4
- 11
+ 4.5.11
+ 21
4.0.2
- 1.12.3
- 5.6.0
-
- 5.10.2
- 5.10.2
- 5.10.2
- 1.19.6
- 1.19.6
- 1.19.6
- 2.23.0
+ 1.14.1
+ 5.7.1
+ 3.6.0
+ 5.11.3
+ 5.11.3
+ 5.11.3
+ 1.20.4
+ 1.20.4
+ 1.20.4
+ 2.24.2
4.0.0
- 1.19.6
- 8.12.2
+ 1.20.4
+ 8.16.1
- 0.8.11
+ 0.8.12
- 10.13.0
- 3.5.2
- 3.6.3
- 3.2.0
- 3.2.5
- 3.3.1
- 3.12.1
- 3.21.2
- 3.2.5
+ 10.20.1
+ 3.6.0
+ 3.11.1
+ 3.5.0
+ 3.5.2
+ 3.6.0
+ 3.13.0
+ 3.26.0
+ 3.5.2
iudx.file.server.deploy.Deployer
iudx.file.server.deploy.DeployerDev
@@ -87,7 +87,7 @@
com.google.guava
guava
- 33.0.0-jre
+ 33.3.1-jre
org.apache.maven.plugins
@@ -119,7 +119,7 @@
io.rest-assured
rest-assured
- 5.4.0
+ 5.5.0
test
@@ -198,6 +198,13 @@
${testcontainer-postgres.version}
test
+
+
+ org.mockito
+ mockito-core
+ 5.5.0
+ test
+
com.ongres.scram
client
@@ -206,7 +213,7 @@
org.postgresql
postgresql
- 42.7.2
+ 42.7.4
test
@@ -233,18 +240,18 @@
com.fasterxml.jackson.core
jackson-core
- 2.16.1
+ 2.18.2
com.fasterxml.jackson.core
jackson-databind
- 2.16.1
+ 2.18.2
com.fasterxml.jackson.core
jackson-annotations
- 2.16.1
+ 2.18.2
@@ -261,7 +268,7 @@
org.mockito
mockito-junit-jupiter
- 5.10.0
+ 5.14.2
test
diff --git a/src/main/java/iudx/file/server/apiserver/FileServerVerticle.java b/src/main/java/iudx/file/server/apiserver/FileServerVerticle.java
index 59db35e..a88bc88 100644
--- a/src/main/java/iudx/file/server/apiserver/FileServerVerticle.java
+++ b/src/main/java/iudx/file/server/apiserver/FileServerVerticle.java
@@ -54,7 +54,7 @@
import java.time.ZonedDateTime;
import java.time.temporal.ChronoUnit;
import java.util.*;
-import org.apache.commons.lang.StringUtils;
+import org.apache.commons.lang3.StringUtils;
import org.apache.http.HttpStatus;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
diff --git a/src/test/java/iudx/file/server/apiserver/validations/types/FileIdTypeValidatorTest.java b/src/test/java/iudx/file/server/apiserver/validations/types/FileIdTypeValidatorTest.java
index 33266b7..36e21bb 100644
--- a/src/test/java/iudx/file/server/apiserver/validations/types/FileIdTypeValidatorTest.java
+++ b/src/test/java/iudx/file/server/apiserver/validations/types/FileIdTypeValidatorTest.java
@@ -4,7 +4,7 @@
import java.util.stream.Stream;
import iudx.file.server.apiserver.exceptions.DxRuntimeException;
-import org.apache.commons.lang.RandomStringUtils;
+import org.apache.commons.lang3.RandomStringUtils;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.extension.ExtendWith;
diff --git a/src/test/java/iudx/file/server/apiserver/validations/types/GeoRelationTypeValidatorTest.java b/src/test/java/iudx/file/server/apiserver/validations/types/GeoRelationTypeValidatorTest.java
index 1ae884e..f2128fb 100644
--- a/src/test/java/iudx/file/server/apiserver/validations/types/GeoRelationTypeValidatorTest.java
+++ b/src/test/java/iudx/file/server/apiserver/validations/types/GeoRelationTypeValidatorTest.java
@@ -4,7 +4,7 @@
import java.util.stream.Stream;
import iudx.file.server.apiserver.exceptions.DxRuntimeException;
-import org.apache.commons.lang.RandomStringUtils;
+import org.apache.commons.lang3.RandomStringUtils;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.extension.ExtendWith;
diff --git a/src/test/java/iudx/file/server/apiserver/validations/types/GeomTypeValidatorTest.java b/src/test/java/iudx/file/server/apiserver/validations/types/GeomTypeValidatorTest.java
index 79cecdd..24f8eb9 100644
--- a/src/test/java/iudx/file/server/apiserver/validations/types/GeomTypeValidatorTest.java
+++ b/src/test/java/iudx/file/server/apiserver/validations/types/GeomTypeValidatorTest.java
@@ -4,7 +4,7 @@
import java.util.stream.Stream;
import iudx.file.server.apiserver.exceptions.DxRuntimeException;
-import org.apache.commons.lang.RandomStringUtils;
+import org.apache.commons.lang3.RandomStringUtils;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.extension.ExtendWith;
diff --git a/src/test/java/iudx/file/server/apiserver/validations/types/IDTypeValidatorTest.java b/src/test/java/iudx/file/server/apiserver/validations/types/IDTypeValidatorTest.java
index c3d0603..e05b588 100644
--- a/src/test/java/iudx/file/server/apiserver/validations/types/IDTypeValidatorTest.java
+++ b/src/test/java/iudx/file/server/apiserver/validations/types/IDTypeValidatorTest.java
@@ -4,7 +4,7 @@
import java.util.stream.Stream;
import iudx.file.server.apiserver.exceptions.DxRuntimeException;
-import org.apache.commons.lang.RandomStringUtils;
+import org.apache.commons.lang3.RandomStringUtils;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.extension.ExtendWith;
diff --git a/src/test/java/iudx/file/server/apiserver/validations/types/SampleTypeValidatorTest.java b/src/test/java/iudx/file/server/apiserver/validations/types/SampleTypeValidatorTest.java
index b9748aa..ff0dda8 100644
--- a/src/test/java/iudx/file/server/apiserver/validations/types/SampleTypeValidatorTest.java
+++ b/src/test/java/iudx/file/server/apiserver/validations/types/SampleTypeValidatorTest.java
@@ -4,7 +4,7 @@
import java.util.stream.Stream;
import iudx.file.server.apiserver.exceptions.DxRuntimeException;
-import org.apache.commons.lang.RandomStringUtils;
+import org.apache.commons.lang3.RandomStringUtils;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.extension.ExtendWith;