aboutsummaryrefslogtreecommitdiffstats
path: root/appc-config/appc-data-services
diff options
context:
space:
mode:
authorPatrick Brady <pb071s@att.com>2018-09-17 12:52:55 -0700
committerPatrick Brady <pb071s@att.com>2018-09-21 09:31:27 -0700
commit28da5021fad45b2c4da1bd1b7db794863e5ef7f3 (patch)
tree4f7fa810ba8a782ab24017193c6afa75dc797b86 /appc-config/appc-data-services
parent32780c70147bf7273f7f6a8d81de1a1efd68a92c (diff)
Remove logback 1.1.3 security issue
cdp-pal and eelf are the dependencies using logback-classic 1.1.3. Need to use exclusions option in pom file Change-Id: Id8f5817ec955e2b7b486bc0215c35541086606aa Signed-off-by: Patrick Brady <pb071s@att.com> Issue-ID: APPC-1018
Diffstat (limited to 'appc-config/appc-data-services')
-rw-r--r--appc-config/appc-data-services/provider/pom.xml14
1 files changed, 13 insertions, 1 deletions
diff --git a/appc-config/appc-data-services/provider/pom.xml b/appc-config/appc-data-services/provider/pom.xml
index 92468db81..0b5676ea0 100644
--- a/appc-config/appc-data-services/provider/pom.xml
+++ b/appc-config/appc-data-services/provider/pom.xml
@@ -62,10 +62,21 @@
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</dependency>
+ <dependency>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ <version>${logback.version}</version>
+ </dependency>
<dependency>
<groupId>com.att.eelf</groupId>
<artifactId>eelf-core</artifactId>
+ <exclusions>
+ <exclusion>
+ <groupId>ch.qos.logback</groupId>
+ <artifactId>logback-classic</artifactId>
+ </exclusion>
+ </exclusions>
</dependency>
<dependency>
@@ -138,7 +149,8 @@
<Bundle-SymbolicName>appc-config-data-services</Bundle-SymbolicName>
<Bundle-Activator>org.onap.appc.data.services.AppcDataServiceActivator</Bundle-Activator>
<Export-Package>org.onap.appc.data.services</Export-Package>
- <Import-Package>*</Import-Package>
+ <Import-Package>groovy.lang;resolution:=optional,
+ org.codehaus.groovy.*;resolution:=optional,*</Import-Package>
<Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency>
<DynamicImport-Package>*</DynamicImport-Package>
</instructions>