Release appc
[appc.git] / services / appc-dmaap-service / appc-dmaap-adapter-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2019 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <groupId>org.onap.appc.parent</groupId>
26         <artifactId>binding-parent</artifactId>
27         <version>2.7.2</version>
28                 <relativePath />
29     </parent>
30         <groupId>org.onap.appc.services.dmaap</groupId>
31     <artifactId>appc-dmaap-adapter-bundle</artifactId>
32     <packaging>jar</packaging>
33     <name>DMaaP Adapter - bundle</name>
34
35     <dependencies>
36        <dependency>
37            <groupId>org.apache.httpcomponents</groupId>
38            <artifactId>httpclient</artifactId>
39        </dependency>
40        <dependency>
41             <groupId>org.onap.appc</groupId>
42             <artifactId>appc-common-bundle</artifactId>
43             <version>${project.version}</version>
44         </dependency>
45         <dependency>
46             <groupId>org.onap.appc.services.dmaap</groupId>
47             <artifactId>appc-message-adapter-api</artifactId>
48             <version>${project.version}</version>
49         </dependency>
50
51         <dependency>
52             <groupId>ch.qos.logback</groupId>
53             <artifactId>logback-classic</artifactId>
54             <version>${logback.version}</version>
55         </dependency>
56        <dependency>
57             <groupId>com.att.eelf</groupId>
58             <artifactId>eelf-core</artifactId>
59             <exclusions>
60                 <exclusion>
61                     <groupId>ch.qos.logback</groupId>
62                     <artifactId>logback-classic</artifactId>
63                 </exclusion>
64             </exclusions>
65         </dependency>
66
67         <dependency>
68             <groupId>junit</groupId>
69             <artifactId>junit</artifactId>
70             <scope>test</scope>
71         </dependency>
72
73         <dependency>
74             <groupId>commons-codec</groupId>
75             <artifactId>commons-codec</artifactId>
76             </dependency>
77
78         <dependency>
79             <groupId>commons-lang</groupId>
80             <artifactId>commons-lang</artifactId>
81         </dependency>
82
83         <dependency>
84             <groupId>com.fasterxml.jackson.core</groupId>
85             <artifactId>jackson-databind</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>com.fasterxml.jackson.core</groupId>
89             <artifactId>jackson-core</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>com.fasterxml.jackson.core</groupId>
93             <artifactId>jackson-annotations</artifactId>
94         </dependency>
95
96         <dependency>
97             <groupId>org.mockito</groupId>
98             <artifactId>mockito-core</artifactId>
99             </dependency>
100         <dependency>
101             <groupId>org.osgi</groupId>
102             <artifactId>org.osgi.core</artifactId>
103             <scope>provided</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.powermock</groupId>
107             <artifactId>powermock-api-mockito</artifactId>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.hamcrest</groupId>
112             <artifactId>hamcrest-core</artifactId>
113             </dependency>
114         <dependency>
115             <groupId>org.objenesis</groupId>
116             <artifactId>objenesis</artifactId>
117             <version>2.2</version>
118         </dependency>
119
120         <dependency>
121             <groupId>org.powermock</groupId>
122             <artifactId>powermock-module-junit4</artifactId>
123             <scope>test</scope>
124         </dependency>
125         <!-- <dependency>
126             <groupId>org.slf4j</groupId>
127             <artifactId>slf4j-api</artifactId>
128         </dependency>
129
130         <dependency>
131             <groupId>org.slf4j</groupId>
132             <artifactId>jcl-over-slf4j</artifactId>
133             </dependency>-->
134         <dependency>
135             <groupId>org.onap.ccsdk.sli.core</groupId>
136             <artifactId>sli-common</artifactId>
137             <scope>compile</scope>
138             <!-- Added exclusion to prevent missing dependency issue on dblib -->
139             <exclusions>
140                 <exclusion>
141                     <groupId>org.onap.ccsdk.sli.core</groupId>
142                     <artifactId>dblib-provider</artifactId>
143                 </exclusion>
144                 <exclusion>
145                     <artifactId>slf4j-simple</artifactId>
146                     <groupId>org.slf4j</groupId>
147                 </exclusion>
148             </exclusions>
149         </dependency>
150
151         <dependency>
152             <groupId>org.onap.ccsdk.sli.core</groupId>
153             <artifactId>sli-provider</artifactId>
154             <scope>compile</scope>
155             <!-- Added exclusion to prevent missing dependency issue on dblib -->
156             <exclusions>
157                 <exclusion>
158                     <groupId>org.onap.ccsdk.sli.core</groupId>
159                     <artifactId>dblib-provider</artifactId>
160                 </exclusion>
161             </exclusions>
162         </dependency>
163
164         <dependency>
165             <groupId>org.json</groupId>
166             <artifactId>json</artifactId>            
167         </dependency>
168         <dependency>
169             <groupId>commons-io</groupId>
170             <artifactId>commons-io</artifactId>
171         </dependency>
172         
173         <dependency>
174             <groupId>javax.ws.rs</groupId>
175             <artifactId>javax.ws.rs-api</artifactId>
176         </dependency>
177     </dependencies>
178
179     <version>1.7.2</version>
180 </project>