From 5104a66d12a2ada0819d1cbcaf935785748f2b87 Mon Sep 17 00:00:00 2001 From: "Brittany Plummer (bp896r)" Date: Tue, 27 Aug 2019 15:36:44 -0400 Subject: Add JAX-RS and Spring filters for setting up MDC Issue-ID: LOG-1113 Change-Id: I7167943384e3983c7eced1c969ed51fcd8130c88 Signed-off-by: Brittany Plummer (bp896r) --- reference/logging-filter/pom.xml | 241 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 241 insertions(+) create mode 100644 reference/logging-filter/pom.xml (limited to 'reference/logging-filter/pom.xml') diff --git a/reference/logging-filter/pom.xml b/reference/logging-filter/pom.xml new file mode 100644 index 0000000..6038024 --- /dev/null +++ b/reference/logging-filter/pom.xml @@ -0,0 +1,241 @@ + + + 4.0.0 + + + org.onap.logging-analytics + logging-reference + 1.5.0-SNAPSHOT + + logging-filter-parent + pom + + + logging-filter-base + logging-filter-spring + + + + false + true + UTF-8 + + + + + + javax.annotation + javax.annotation-api + 1.2 + provided + + + org.onap.logging-analytics + logging-slf4j + 1.5.0-SNAPSHOT + + + javax.servlet + javax.servlet-api + 3.1.0 + provided + + + javax.ws.rs + javax.ws.rs-api + 2.0.1 + provided + + + org.slf4j + slf4j-api + 1.7.25 + provided + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.11.2 + test + + + junit + junit + 4.11 + test + + + org.mockito + mockito-core + 2.15.0 + test + + + + + + + + maven-compiler-plugin + 2.5.1 + + + default-compile + compile + + compile + + + 1.8 + 1.8 + true + + -parameters + -Xlint:deprecation + + + + + default-testCompile + test-compile + + testCompile + + + 1.8 + 1.8 + true + + -parameters + -Xlint:deprecation + + + + + + 1.8 + 1.8 + true + + -parameters + -Xlint:deprecation + + + + + org.codehaus.gmaven + groovy-maven-plugin + 2.0 + + + + find-basepath + validate + + execute + + + + + + + + + + + net.revelc.code.formatter + formatter-maven-plugin + 2.9.0 + + + format-java + + format + + + ${format.skipExecute} + ${base-path}/project-configs/code-tools/onap-eclipse-format.xml + + + + format-xml + + format + + + ${format.skipExecute} + ${project.basedir} + ${base-path}/project-configs/code-tools/pom-format.properties + + ${project.basedir}/pom.xml + + + + + validate-java + + validate + + + ${format.skipValidate} + ${base-path}/project-configs/code-tools/onap-eclipse-format.xml + + + + validate-poms + + validate + + + ${format.skipValidate} + ${base-path}/project-configs/code-tools/pom-format.properties + + ${project.basedir}/pom.xml + + + + + + + com.fasterxml.jackson.core + jackson-annotations + 2.9.8 + + + + + + + + format + + true + false + + + + -- cgit 1.2.3-korg