diff options
author | HOCKLA <ah999m@att.com> | 2020-01-23 15:28:35 -0600 |
---|---|---|
committer | HOCKLA <ah999m@att.com> | 2020-02-03 09:26:27 -0600 |
commit | ce75201a88f6787c7f5aed265c32134e1a116761 (patch) | |
tree | 93feecb445debce3e6de8174d0a4fb831f22ffb9 /BRMSGateway | |
parent | 3fcc3204c1c65a5e5f774088bca1fd81dedd9ddb (diff) |
policy/engine jdk11 junit and compilation error fixes
Issue-ID: POLICY-1590
Change-Id: I0bbc6f7310705c20924812efc5be2b0f91cf71a2
Signed-off-by: HOCKLA <ah999m@att.com>
Diffstat (limited to 'BRMSGateway')
-rw-r--r-- | BRMSGateway/pom.xml | 5 | ||||
-rw-r--r-- | BRMSGateway/src/main/java/org/onap/policy/brms/api/BrmsPush.java | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/BRMSGateway/pom.xml b/BRMSGateway/pom.xml index 8f6a79df1..43ac9bd43 100644 --- a/BRMSGateway/pom.xml +++ b/BRMSGateway/pom.xml @@ -91,6 +91,11 @@ <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-lang3</artifactId> + <version>3.9</version> + </dependency> </dependencies> <build> <plugins> diff --git a/BRMSGateway/src/main/java/org/onap/policy/brms/api/BrmsPush.java b/BRMSGateway/src/main/java/org/onap/policy/brms/api/BrmsPush.java index 0c43aeef7..45f65851e 100644 --- a/BRMSGateway/src/main/java/org/onap/policy/brms/api/BrmsPush.java +++ b/BRMSGateway/src/main/java/org/onap/policy/brms/api/BrmsPush.java @@ -60,7 +60,7 @@ import javax.persistence.Persistence; import javax.persistence.TypedQuery; import javax.ws.rs.ProcessingException; import org.apache.commons.io.FileUtils; -import org.apache.commons.lang.StringEscapeUtils; +import org.apache.commons.lang3.StringEscapeUtils; import org.apache.maven.model.Dependency; import org.apache.maven.model.DeploymentRepository; import org.apache.maven.model.DistributionManagement; |