aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--feature-active-standby-management/pom.xml5
-rw-r--r--feature-eelf/pom.xml2
-rw-r--r--feature-eelf/src/test/java/org/onap/policy/drools/eelf/test/EElfTest.java4
3 files changed, 8 insertions, 3 deletions
diff --git a/feature-active-standby-management/pom.xml b/feature-active-standby-management/pom.xml
index 96bb3c0c..46d987cc 100644
--- a/feature-active-standby-management/pom.xml
+++ b/feature-active-standby-management/pom.xml
@@ -173,6 +173,11 @@
<artifactId>assertj-core</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.powermock</groupId>
+ <artifactId>powermock-api-mockito2</artifactId>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</project>
diff --git a/feature-eelf/pom.xml b/feature-eelf/pom.xml
index d736fb83..1e1fc6ce 100644
--- a/feature-eelf/pom.xml
+++ b/feature-eelf/pom.xml
@@ -97,7 +97,7 @@
<dependency>
<groupId>com.att.eelf</groupId>
<artifactId>eelf-core</artifactId>
- <version>1.0.0</version>
+ <version>2.0.0-oss</version>
</dependency>
<dependency>
<groupId>org.onap.policy.common</groupId>
diff --git a/feature-eelf/src/test/java/org/onap/policy/drools/eelf/test/EElfTest.java b/feature-eelf/src/test/java/org/onap/policy/drools/eelf/test/EElfTest.java
index dfa85948..10e2632a 100644
--- a/feature-eelf/src/test/java/org/onap/policy/drools/eelf/test/EElfTest.java
+++ b/feature-eelf/src/test/java/org/onap/policy/drools/eelf/test/EElfTest.java
@@ -114,7 +114,7 @@ public class EElfTest {
assertTrue(loggers.contains(Configuration.ERROR_LOGGER_NAME));
assertTrue(loggers.contains(Configuration.METRICS_LOGGER_NAME));
- final EELFLogger eelfAuditLogger = EELFManager.getInstance().getAuditLogger();
+ final EELFLogger eelfAuditLogger = EELFManager.getAuditLogger();
final Logger slf4jAuditLogger = org.slf4j.LoggerFactory.getLogger(Configuration.AUDIT_LOGGER_NAME);
org.onap.policy.common.logging.flexlogger.Logger flexLogger =
FlexLogger.getLogger(EElfTest.class, true);
@@ -123,7 +123,7 @@ public class EElfTest {
Exception testException = new IllegalStateException("exception test");
flexLogger.error("flex-logger exception", testException);
- EELFManager.getInstance().getErrorLogger().error("eelf-logger exception", testException);
+ EELFManager.getErrorLogger().error("eelf-logger exception", testException);
org.slf4j.LoggerFactory.getLogger(Configuration.ERROR_LOGGER_NAME).error("slf4j-logger", testException);