remove logback 1.1.2 security issue
[appc.git] / appc-config / appc-config-params / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   Copyright (C) 2017 Amdocs
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12   
13        http://www.apache.org/licenses/LICENSE-2.0
14   
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24         <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.appc.parent</groupId>
27                 <artifactId>binding-parent</artifactId>
28                 <version>1.4.0-SNAPSHOT</version>
29                 <relativePath />
30         </parent>
31         <groupId>org.onap.appc</groupId>
32         <artifactId>appc-config-params-provider</artifactId>
33         <packaging>bundle</packaging>
34         <name>Config Params - Provider</name>
35
36         <dependencies>
37                 <dependency>
38                         <groupId>equinoxSDK381</groupId>
39                         <artifactId>org.eclipse.osgi</artifactId>
40                         <version>${equinox.osgi.version}</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.onap.ccsdk.sli.core</groupId>
44                         <artifactId>sli-provider</artifactId>
45                 </dependency>
46
47                 <dependency>
48                         <groupId>org.openecomp.sdc.common</groupId>
49                         <artifactId>openecomp-tosca-datatype</artifactId>
50                         <version>${tosca.datatype.version}</version>
51                 </dependency>
52
53                 <dependency>
54                         <groupId>ch.qos.logback</groupId>
55                         <artifactId>logback-core</artifactId>
56                 </dependency>
57                 <dependency>
58                         <groupId>ch.qos.logback</groupId>
59                         <artifactId>logback-classic</artifactId>
60                 </dependency>
61
62                 <dependency>
63                         <groupId>com.fasterxml.jackson.core</groupId>
64                         <artifactId>jackson-databind</artifactId>
65                 </dependency>
66                 <dependency>
67                         <groupId>com.fasterxml.jackson.core</groupId>
68                         <artifactId>jackson-annotations</artifactId>
69                 </dependency>
70                 <dependency>
71                         <groupId>com.fasterxml.jackson.core</groupId>
72                         <artifactId>jackson-core</artifactId>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.apache.commons</groupId>
76                         <artifactId>commons-lang3</artifactId>
77                 </dependency>
78                 <dependency>
79                         <groupId>com.fasterxml.jackson.dataformat</groupId>
80                         <artifactId>jackson-dataformat-yaml</artifactId>
81                 </dependency>
82                 <dependency>
83                         <groupId>org.yaml</groupId>
84                         <artifactId>snakeyaml</artifactId>
85                 </dependency>
86
87                 <dependency>
88                         <groupId>commons-io</groupId>
89                         <artifactId>commons-io</artifactId>
90                 </dependency>
91                 <dependency>
92                         <groupId>com.att.eelf</groupId>
93                         <artifactId>eelf-core</artifactId>
94                 </dependency>
95
96                 <dependency>
97                         <groupId>junit</groupId>
98                         <artifactId>junit</artifactId>
99                         <scope>test</scope>
100                 </dependency>
101
102         </dependencies>
103
104         <build>
105                 <plugins>
106                         <plugin>
107                                 <groupId>org.apache.felix</groupId>
108                                 <artifactId>maven-bundle-plugin</artifactId>
109                                 <version>${bundle.plugin.version}</version>
110                                 <extensions>true</extensions>
111                                 <configuration>
112                                         <instructions>
113                                                 <Bundle-SymbolicName>org.onap.sdnc.config.params</Bundle-SymbolicName>
114                                                 <Bundle-Activator>org.onap.sdnc.config.params.ParamsHandlerActivator</Bundle-Activator>
115                                                 <Export-Package>org.onap.sdnc.config.params,org.onap.sdnc.config.params.data,
116                                                         org.onap.sdnc.config.params.parser,org.onap.sdnc.config.params.transformer,
117                                                         org.onap.sdnc.config.params.transformer.tosca,org.onap.sdnc.config.params.transformer.tosca.exceptions</Export-Package>
118                                                 <Import-Package>!com.google.common.collect,*</Import-Package>
119                                                 <Embed-Dependency>guava,jackson-databind,jackson-annotations,jackson-core,jackson-dataformat-yaml,eelf-core,logback-core,logback-classic</Embed-Dependency>
120                                                 <DynamicImport-Package>*</DynamicImport-Package>
121                                         </instructions>
122                                         <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
123                                 </configuration>
124                         </plugin>
125                 </plugins>
126                 <pluginManagement>
127                         <plugins>
128                                 <!--This plugin's configuration is used to store Eclipse m2e settings 
129                                         only. It has no influence on the Maven build itself. -->
130                         </plugins>
131                 </pluginManagement>
132         </build>
133 </project>