diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-05-19 18:22:12 +0100 |
---|---|---|
committer | Andr� Schmid <andre.schmid@est.tech> | 2021-05-27 15:54:18 +0000 |
commit | 30b974a429821c7a065b393b690e2380afce3284 (patch) | |
tree | 9a7e830be01ecc1018c43ef5d6218cb1974e5757 /catalog-be/src/test | |
parent | f070300ac0e134badd57a2ce276b25d84c7d53c0 (diff) |
Update vulnerable package dependencies
org.apache.commons.lang -> org.apache.commons.lang3:3.10
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Change-Id: I5806fd786394d278244fd88ea4925a91c2f05622
Issue-ID: SDC-3572
Diffstat (limited to 'catalog-be/src/test')
4 files changed, 5 insertions, 5 deletions
diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/components/distribution/engine/StepsTenantIsolation.java b/catalog-be/src/test/java/org/openecomp/sdc/be/components/distribution/engine/StepsTenantIsolation.java index 6e7a75f332..2d440aa0f4 100644 --- a/catalog-be/src/test/java/org/openecomp/sdc/be/components/distribution/engine/StepsTenantIsolation.java +++ b/catalog-be/src/test/java/org/openecomp/sdc/be/components/distribution/engine/StepsTenantIsolation.java @@ -37,8 +37,8 @@ import io.cucumber.java.en.Given; import io.cucumber.java.en.Then; import io.cucumber.java.en.When; import io.cucumber.junit.Cucumber; -import org.apache.commons.lang.NotImplementedException; -import org.apache.commons.lang.math.NumberUtils; +import org.apache.commons.lang3.NotImplementedException; +import org.apache.commons.lang3.math.NumberUtils; import org.apache.http.HttpStatus; import org.junit.Assert; import org.junit.runner.RunWith; diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/components/scheduledtasks/RecoveryThreadManagerTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/components/scheduledtasks/RecoveryThreadManagerTest.java index 629e50c35e..0d1c839a08 100644 --- a/catalog-be/src/test/java/org/openecomp/sdc/be/components/scheduledtasks/RecoveryThreadManagerTest.java +++ b/catalog-be/src/test/java/org/openecomp/sdc/be/components/scheduledtasks/RecoveryThreadManagerTest.java @@ -21,7 +21,7 @@ package org.openecomp.sdc.be.components.scheduledtasks; import fj.data.Either; -import org.apache.commons.lang.math.NumberUtils; +import org.apache.commons.lang3.math.NumberUtils; import org.junit.Before; import org.junit.Test; import org.mockito.InjectMocks; diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/ComponentInstanceServletTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/ComponentInstanceServletTest.java index b3a189a670..342f9eb2ba 100644 --- a/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/ComponentInstanceServletTest.java +++ b/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/ComponentInstanceServletTest.java @@ -52,7 +52,7 @@ import javax.servlet.http.HttpSession; import javax.ws.rs.client.Entity; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Response; -import org.apache.commons.lang.StringUtils; +import org.apache.commons.lang3.StringUtils; import org.eclipse.jetty.http.HttpStatus; import org.glassfish.hk2.utilities.binding.AbstractBinder; import org.glassfish.jersey.server.ResourceConfig; diff --git a/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/utils/OperationArtifactUtilTest.java b/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/utils/OperationArtifactUtilTest.java index c9f21e41b7..58d796a196 100644 --- a/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/utils/OperationArtifactUtilTest.java +++ b/catalog-be/src/test/java/org/openecomp/sdc/be/tosca/utils/OperationArtifactUtilTest.java @@ -15,7 +15,7 @@ */ package org.openecomp.sdc.be.tosca.utils; -import org.apache.commons.lang.WordUtils; +import org.apache.commons.text.WordUtils; import org.junit.Assert; import org.junit.BeforeClass; import org.junit.Test; |