upgrade databind artifact
[appc.git] / appc-adapters / appc-rest-adapter / appc-rest-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>1.5.0-SNAPSHOT</version>
28                 <relativePath />
29         </parent>
30
31         <groupId>org.onap.appc</groupId>
32         <artifactId>appc-rest-adapter-bundle</artifactId>
33         <packaging>bundle</packaging>
34         <name>rest Adapter - bundle</name>
35
36         <dependencies>
37                 <dependency>
38                         <groupId>commons-logging</groupId>
39                         <artifactId>commons-logging</artifactId>
40                         <version>1.2</version>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.apache.httpcomponents</groupId>
44                         <artifactId>httpcore</artifactId>
45                         <version>4.4.4</version>
46                 </dependency>
47                 <dependency>
48                         <groupId>org.onap.appc</groupId>
49                         <artifactId>appc-common-bundle</artifactId>
50                         <version>${project.version}</version>
51                         <exclusions>
52                             <exclusion>
53                               <groupId>com.fasterxml.jackson.core</groupId>
54                               <artifactId>jackson-databind</artifactId>
55                             </exclusion>
56                          </exclusions>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>com.fasterxml.jackson.core</groupId>
61                         <artifactId>jackson-databind</artifactId>
62                         <version>2.8.11.3</version>
63                 </dependency>
64
65                 <dependency>
66                         <groupId>javax</groupId>
67                         <artifactId>javaee-api</artifactId>
68                         <version>7.0</version>
69                 </dependency>
70 <!--            <dependency> -->
71 <!--                    <groupId>jce</groupId> -->
72 <!--                    <artifactId>jce</artifactId> -->
73 <!--                    <version>1_2-do</version> -->
74 <!--                    <scope>compile</scope> -->
75 <!--            </dependency> -->
76
77                 <dependency>
78                         <groupId>com.att.cdp</groupId>
79                         <artifactId>cdp-pal-common</artifactId>
80                         <scope>compile</scope>
81                         <version>${cdp.pal.version}</version>
82                         <exclusions>
83                             <exclusion>
84                                  <groupId>ch.qos.logback</groupId>
85                                  <artifactId>logback-classic</artifactId>
86                             </exclusion>
87                         </exclusions>
88                 </dependency>
89
90                 <dependency>
91                         <groupId>com.att.cdp</groupId>
92                         <artifactId>cdp-pal-openstack</artifactId>
93                         <scope>compile</scope>
94                         <version>${cdp.pal.version}</version>
95                         <exclusions>
96                             <exclusion>
97                                  <groupId>com.att.cdp</groupId>
98                                  <artifactId>cdp-pal-common</artifactId>
99                             </exclusion>
100                         </exclusions>
101                 </dependency>
102
103                 <dependency>
104                         <groupId>javax.ws.rs</groupId>
105                         <artifactId>javax.ws.rs-api</artifactId>
106                         </dependency>
107
108                 <!-- Jersey support needed for OpenStack connector and API version logic -->
109                 <dependency>
110                         <groupId>com.sun.jersey</groupId>
111                         <artifactId>jersey-client</artifactId>
112                         </dependency>
113
114                 <dependency>
115                 <groupId>org.json</groupId>
116                 <artifactId>json</artifactId>
117                 </dependency>
118                 <dependency>
119                      <groupId>com.sun.jersey</groupId>
120                      <artifactId>jersey-json</artifactId>
121                      <exclusions>
122                          <exclusion>
123                                <groupId>org.codehaus.jackson</groupId>
124                                <artifactId>jackson-mapper-asl</artifactId>
125                          </exclusion>
126                      </exclusions>
127                </dependency>
128                <dependency>
129                      <groupId>org.codehaus.jackson</groupId>
130                      <artifactId>jackson-mapper-asl</artifactId>
131                      <version>1.9.3</version>
132                 </dependency>
133
134                 <dependency>
135                         <groupId>javax.xml.bind</groupId>
136                         <artifactId>jaxb-api</artifactId>
137                         <version>2.2.3</version>
138                 </dependency>
139
140                 <dependency>
141                         <groupId>javax.xml</groupId>
142                         <artifactId>jaxp-api</artifactId>
143                         <version>1.4.2</version>
144                 </dependency>
145
146                 <!-- Needed to run test cases -->
147                 <dependency>
148                         <groupId>org.glassfish.jersey.core</groupId>
149                         <artifactId>jersey-common</artifactId>
150                         <version>2.9.1</version>
151             <scope>test</scope>
152                 </dependency>
153
154
155                 <dependency>
156                         <groupId>commons-codec</groupId>
157                         <artifactId>commons-codec</artifactId>
158                 </dependency>
159
160                 <dependency>
161                         <groupId>junit</groupId>
162                         <artifactId>junit</artifactId>
163                         <scope>test</scope>
164                 </dependency>
165
166                 <dependency>
167                         <groupId>org.onap.ccsdk.sli.core</groupId>
168                         <artifactId>sli-common</artifactId>
169                         <scope>compile</scope>
170                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
171                         <exclusions>
172                                 <exclusion>
173                                         <groupId>org.onap.ccsdk.sli.core</groupId>
174                                         <artifactId>dblib-provider</artifactId>
175                                 </exclusion>
176                         </exclusions>
177                 </dependency>
178
179                 <dependency>
180                         <groupId>org.onap.ccsdk.sli.core</groupId>
181                         <artifactId>sli-provider</artifactId>
182                         <scope>compile</scope>
183                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
184                         <exclusions>
185                                 <exclusion>
186                                         <groupId>org.onap.ccsdk.sli.core</groupId>
187                                         <artifactId>dblib-provider</artifactId>
188                                 </exclusion>
189                         </exclusions>
190                 </dependency>
191
192 <!--            <dependency> -->
193 <!--                    <groupId>equinoxSDK381</groupId> -->
194 <!--                    <artifactId>org.eclipse.osgi</artifactId> -->
195 <!--            </dependency> -->
196
197                 <dependency>
198                         <groupId>org.slf4j</groupId>
199                         <artifactId>slf4j-api</artifactId>
200                 </dependency>
201
202                 <dependency>
203                         <groupId>org.slf4j</groupId>
204                         <artifactId>jcl-over-slf4j</artifactId>
205                 </dependency>
206
207                         <dependency>
208                                 <groupId>org.mariadb.jdbc</groupId>
209                                 <artifactId>mariadb-java-client</artifactId>
210                 <version>${mariadb.client.version}</version>
211                 </dependency>
212
213                 <dependency>
214                         <groupId>org.osgi</groupId>
215                         <artifactId>org.osgi.core</artifactId>
216                         <scope>provided</scope>
217                 </dependency>
218
219                 <dependency>
220                         <groupId>com.vmware</groupId>
221                         <artifactId>vijava</artifactId>
222                         <version>5.1</version>
223                         <scope>compile</scope>
224                 </dependency>
225
226                 <dependency>
227                         <groupId>xerces</groupId>
228                         <artifactId>xerces</artifactId>
229                         <version>2.4.0</version>
230                         <scope>provided</scope>
231                 </dependency>
232
233         </dependencies>
234
235         <build>
236                 <plugins>
237                         <plugin>
238                                 <groupId>org.apache.felix</groupId>
239                                 <artifactId>maven-bundle-plugin</artifactId>
240                                 <extensions>true</extensions>
241                                 <configuration>
242                                         <instructions>
243                                                 <Bundle-SymbolicName>appc-rest-adapter</Bundle-SymbolicName>
244                                                 <Bundle-Activator>org.onap.appc.adapter.rest.RestActivator</Bundle-Activator>
245                                                 <Export-Package>org.onap.appc.adapter.rest</Export-Package>
246                                                 <Import-Package>org.onap.ccsdk.sli.core.sli.*,org.osgi.framework.*,org.slf4j.*,com.vmware.*,org.apache.xerces.*,javax.net.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.bind.*,javax.naming.*</Import-Package>
247             <Embed-Dependency>*;scope=compile|runtime;artifactId=!sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis|jaxp-api</Embed-Dependency>
248                                                 <Embed-Transitive>true</Embed-Transitive>
249                                         </instructions>
250                                 </configuration>
251                         </plugin>
252                 </plugins>
253         </build>
254         <version>1.5.0-SNAPSHOT</version>
255 </project>