resolve base64 class not found 94/88194/2
authorTaka Cho <takamune.cho@att.com>
Sun, 19 May 2019 21:15:27 +0000 (17:15 -0400)
committerTakamune Cho <takamune.cho@att.com>
Tue, 21 May 2019 20:25:36 +0000 (20:25 +0000)
add commons-codec in embedded-dependency
in event listener pom file

Issue-ID: APPC-1604
Change-Id: I7006ed41d412b1dcf21dd64987a84d1ad04c9093
Signed-off-by: Taka Cho <takamune.cho@att.com>
appc-event-listener/appc-event-listener-bundle/pom.xml
appc-event-listener/appc-event-listener-bundle/src/main/java/org/onap/appc/listener/demo/impl/ProviderOperations.java

index e80d273..cd21d90 100644 (file)
                        <groupId>equinoxSDK381</groupId>
                        <artifactId>org.eclipse.osgi</artifactId>
                </dependency>
-
+                <dependency>
+                  <groupId>commons-codec</groupId>
+                  <artifactId>commons-codec</artifactId>
+                </dependency>
                <dependency>
                        <groupId>com.fasterxml.jackson.core</groupId>
                        <artifactId>jackson-databind</artifactId>
                                                        *;resolution:=optional
                                                </Import-Package>
                                                <Embed-Dependency>
-                                                       httpclient,httpcore,jasypt,commons-lang,commons-lang3,appc-common-bundle,
+                                                       httpclient,httpcore,jasypt,commons-lang,commons-lang3,commons-codec,appc-common-bundle,
                                                        logback-core,logback-classic,eelf-core,commons-logging;scope=compile|runtime;inline=false
                                                </Embed-Dependency>
                                                <Embed-Transitive>true</Embed-Transitive>
index f51be28..6cd2f2d 100644 (file)
@@ -168,7 +168,7 @@ public class ProviderOperations {
     public static String setAuthentication(String user, String password) {
         if (user != null && password != null) {
             String authStr = user + ":" + password;
-            basic_auth = new String(Base64.encodeBase64(authStr.getBytes()));
+            basic_auth = new String(org.apache.commons.codec.binary.Base64.encodeBase64(authStr.getBytes()));
         } else {
             basic_auth = null;
         }