resolving logback-classic 1.13 from security issue
[appc.git] / appc-inbound / appc-design-services / 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   Modification Copyright (C) 2018 IBM
9   ================================================================================
10   Licensed under the Apache License, Version 2.0 (the "License");
11   you may not use this file except in compliance with the License.
12   You may obtain a copy of the License at
13   
14        http://www.apache.org/licenses/LICENSE-2.0
15   
16   Unless required by applicable law or agreed to in writing, software
17   distributed under the License is distributed on an "AS IS" BASIS,
18   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19   See the License for the specific language governing permissions and
20   limitations under the License.
21   ============LICENSE_END=========================================================
22   -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26         <parent>
27                 <groupId>org.onap.appc.parent</groupId>
28                 <artifactId>binding-parent</artifactId>
29                 <version>1.4.0-SNAPSHOT</version>
30                 <relativePath />
31         </parent>
32         <groupId>org.onap.appc</groupId>
33     <artifactId>appc-design-services-provider</artifactId>
34     <packaging>bundle</packaging>
35
36     <build>
37         <plugins>
38             <plugin>
39                 <groupId>org.apache.felix</groupId>
40                 <artifactId>maven-bundle-plugin</artifactId>
41                 <extensions>true</extensions>
42                 <configuration>
43                     <instructions>
44                         <Export-Package>org.onap.appc.design.services</Export-Package>
45                         <Import-Package>org.onap.appc.instar,*;resolution:=optional</Import-Package>
46                         <Embed-Dependency>jackson-dataformat-yaml</Embed-Dependency>
47                          <DynamicImport-Package>*</DynamicImport-Package>
48                         <Embed-Transitive>true</Embed-Transitive>
49                     </instructions>
50                 </configuration>
51             </plugin>
52         </plugins>
53     </build>
54
55     <dependencies>
56         <dependency>
57             <groupId>org.mockito</groupId>
58             <artifactId>mockito-core</artifactId>            
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.onap.appc</groupId>
63             <artifactId>appc-design-services-model</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>org.onap.appc</groupId>
68             <artifactId>appc-network-inventory-client-provider</artifactId>
69             <version>${project.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.onap.ccsdk.sli.core</groupId>
73             <artifactId>sli-provider</artifactId>
74         </dependency>
75
76         <dependency>
77             <groupId>org.apache.commons</groupId>
78             <artifactId>commons-lang3</artifactId>
79         </dependency>
80
81         <dependency>
82             <groupId>junit</groupId>
83             <artifactId>junit</artifactId>
84             <scope>test</scope>
85         </dependency>
86         <dependency>
87             <groupId>org.jasypt</groupId>
88             <artifactId>jasypt</artifactId>
89             <version>1.9.2</version>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller</groupId>
93             <artifactId>config-api</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.controller</groupId>
97             <artifactId>sal-binding-config</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>org.opendaylight.controller</groupId>
101             <artifactId>sal-binding-api</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller</groupId>
105             <artifactId>sal-common-util</artifactId>
106         </dependency>
107         <dependency>
108             <artifactId>sal-test-model</artifactId>
109             <groupId>org.opendaylight.controller</groupId>
110             <scope>test</scope>
111         </dependency>
112         <dependency>
113             <groupId>org.opendaylight.controller</groupId>
114             <artifactId>sal-binding-broker-impl</artifactId>
115             <scope>test</scope>
116         </dependency>
117         <dependency>
118          <groupId>ch.qos.logback</groupId>
119          <artifactId>logback-classic</artifactId>
120          <version>${logback.version}</version>
121         </dependency>
122         <dependency>
123             <groupId>com.att.eelf</groupId>
124             <artifactId>eelf-core</artifactId>
125             <exclusions>
126                  <exclusion>
127                       <groupId>ch.qos.logback</groupId>
128                       <artifactId>logback-classic</artifactId>
129                  </exclusion>
130             </exclusions>
131         </dependency>
132         <dependency>
133             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
134             <artifactId>sql-resource-provider</artifactId>
135             <version>${ccsdk.sli.adaptors.version}</version>
136         </dependency>
137         <dependency>
138             <groupId>org.onap.ccsdk.sli.core</groupId>
139             <artifactId>sli-provider</artifactId>
140         </dependency>
141         <dependency>
142             <groupId>com.sun.jersey</groupId>
143             <artifactId>jersey-client</artifactId>
144             <version>1.17</version>
145             <scope>provided</scope>
146         </dependency>
147         <dependency>
148             <groupId>org.onap.ccsdk.sli.core</groupId>
149             <artifactId>sli-common</artifactId>
150         </dependency>
151         <dependency>
152             <groupId>com.fasterxml.jackson.dataformat</groupId>
153             <artifactId>jackson-dataformat-yaml</artifactId>
154             <version>2.3.2</version>
155         </dependency>
156         <dependency>
157             <groupId>com.fasterxml.jackson.core</groupId>
158             <artifactId>jackson-databind</artifactId>
159         </dependency>
160         <dependency>
161             <groupId>org.apache.commons</groupId>
162             <artifactId>commons-lang3</artifactId>
163         </dependency>
164         <dependency>
165             <groupId>org.apache.velocity</groupId>
166             <artifactId>velocity</artifactId>
167             <version>1.7</version>
168             <exclusions>
169                   <exclusion>
170                         <artifactId>commons-collections</artifactId>
171                         <groupId>commons-collections</groupId>
172                   </exclusion>
173             </exclusions>
174         </dependency>
175         <dependency>
176             <groupId>commons-collections</groupId>
177             <artifactId>commons-collections</artifactId>
178             <version>3.2.2</version>
179         </dependency>
180         <dependency>
181             <groupId>commons-io</groupId>
182             <artifactId>commons-io</artifactId>
183         </dependency>
184         <dependency>
185             <groupId>org.powermock</groupId>
186             <artifactId>powermock-module-junit4-rule-agent</artifactId>
187             <version>1.6.5</version>
188             <scope>test</scope>
189         </dependency>
190         <dependency>
191             <groupId>org.powermock</groupId>
192             <artifactId>powermock-api-mockito-common</artifactId>
193             <version>1.6.5</version>
194         </dependency>
195     </dependencies>
196 </project>
197