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