Release appc
[appc.git] / appc-service-communicator / appc-service-communicator-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License");
9   you may not use this file except in compliance with the License.
10   You may obtain a copy of the License at
11   
12        http://www.apache.org/licenses/LICENSE-2.0
13   
14   Unless required by applicable law or agreed to in writing, software
15   distributed under the License is distributed on an "AS IS" BASIS,
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   See the License for the specific language governing permissions and
18   limitations under the License.
19   ============LICENSE_END=========================================================
20   -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22     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</groupId>
31     <artifactId>appc-service-communicator-bundle</artifactId>
32     <packaging>bundle</packaging>
33     <name>Service Communicator - 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
46         <dependency>
47             <groupId>ch.qos.logback</groupId>
48             <artifactId>logback-classic</artifactId>
49             <version>${logback.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>com.att.eelf</groupId>
53             <artifactId>eelf-core</artifactId>
54             <exclusions>
55                 <exclusion>
56                     <groupId>ch.qos.logback</groupId>
57                     <artifactId>logback-classic</artifactId>
58                 </exclusion>
59             </exclusions>
60         </dependency>
61
62         <dependency>
63             <groupId>junit</groupId>
64             <artifactId>junit</artifactId>
65             <scope>test</scope>
66         </dependency>
67
68         <dependency>
69             <groupId>commons-codec</groupId>
70             <artifactId>commons-codec</artifactId>
71         </dependency>
72
73         <dependency>
74             <groupId>commons-lang</groupId>
75             <artifactId>commons-lang</artifactId>
76         </dependency>
77
78         <dependency>
79             <groupId>com.fasterxml.jackson.core</groupId>
80             <artifactId>jackson-databind</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>com.fasterxml.jackson.core</groupId>
84             <artifactId>jackson-core</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>com.fasterxml.jackson.core</groupId>
88             <artifactId>jackson-annotations</artifactId>
89         </dependency>
90
91         <dependency>
92             <groupId>org.mockito</groupId>
93             <artifactId>mockito-core</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>org.osgi</groupId>
97             <artifactId>org.osgi.core</artifactId>
98             <scope>provided</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.onap.ccsdk.sli.core</groupId>
102             <artifactId>sli-common</artifactId>
103             <scope>compile</scope>
104             <!-- Added exclusion to prevent missing dependency issue on dblib -->
105             <exclusions>
106                 <exclusion>
107                     <groupId>org.onap.ccsdk.sli.core</groupId>
108                     <artifactId>dblib-provider</artifactId>
109                 </exclusion>
110                 <exclusion>
111                     <artifactId>slf4j-simple</artifactId>
112                     <groupId>org.slf4j</groupId>
113                 </exclusion>
114             </exclusions>
115         </dependency>
116
117         <dependency>
118             <groupId>org.onap.ccsdk.sli.core</groupId>
119             <artifactId>sli-provider</artifactId>
120             <scope>compile</scope>
121             <!-- Added exclusion to prevent missing dependency issue on dblib -->
122             <exclusions>
123                 <exclusion>
124                     <groupId>org.onap.ccsdk.sli.core</groupId>
125                     <artifactId>dblib-provider</artifactId>
126                 </exclusion>
127             </exclusions>
128         </dependency>
129
130         <dependency>
131             <groupId>org.json</groupId>
132             <artifactId>json</artifactId>
133         </dependency>
134         <dependency>
135             <groupId>commons-io</groupId>
136             <artifactId>commons-io</artifactId>
137         </dependency>
138
139         <dependency>
140             <groupId>javax.ws.rs</groupId>
141             <artifactId>javax.ws.rs-api</artifactId>
142         </dependency>
143     </dependencies>
144
145     <build>
146         <plugins>
147             <plugin>
148                 <groupId>org.apache.felix</groupId>
149                 <artifactId>maven-bundle-plugin</artifactId>
150                 <extensions>true</extensions>
151                 <configuration>
152                     <instructions>
153                         <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
154                         <Bundle-Version>${project.version}</Bundle-Version>
155                         <Export-Package>org.onap.appc.srvcomm.messaging,org.onap.appc.srvcomm.messaging.event</Export-Package>
156                         <Import-Package>com.att.eelf.configuration,*;resolution:=optional</Import-Package>
157                         <Embed-Dependency>logback-classic,
158                             logback-core,dmaapClient;scope=compile|runtime;artifactId=!org.eclipse.osgi|slf4j-api|slf4j-simple|jcl-over-slf4j|</Embed-Dependency>
159                         <Embed-Transitive>true</Embed-Transitive>
160                     </instructions>
161                 </configuration>
162             </plugin>
163         </plugins>
164     </build>
165     <version>1.7.2</version>
166 </project>