upgrade httpclient from 4.5.1 to 4.5.3
[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 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   ECOMP is a trademark and service mark of AT&T Intellectual Property.
22   -->
23 <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">
24     <modelVersion>4.0.0</modelVersion>
25     <parent>
26         <groupId>org.onap.appc</groupId>
27         <artifactId>appc-netconf-adapter</artifactId>
28         <version>1.3.0-SNAPSHOT</version>
29     </parent>
30
31     <artifactId>appc-netconf-adapter-bundle</artifactId>
32     <packaging>bundle</packaging>
33     <name>NETCONF Adapter - bundle</name>
34     <properties>
35         <exam.version>4.9.1</exam.version>
36         <url.version>1.6.0</url.version>
37         <sal-netconf-connector.version>1.3.1-Beryllium-SR1</sal-netconf-connector.version>
38     </properties>
39
40     <dependencies>
41         <dependency>
42             <groupId>org.onap.appc</groupId>
43             <artifactId>appc-common</artifactId>
44             <version>${project.version}</version>
45         </dependency>
46
47         <dependency>
48             <groupId>javax</groupId>
49             <artifactId>javaee-api</artifactId>
50             <version>7.0</version>
51         </dependency>
52
53         <dependency>
54             <groupId>com.att.cdp</groupId>
55             <artifactId>cdp-pal-common</artifactId>
56             <scope>compile</scope>
57         </dependency>
58
59         <dependency>
60             <groupId>com.att.cdp</groupId>
61             <artifactId>cdp-pal-openstack</artifactId>
62             <scope>compile</scope>
63         </dependency>
64
65         <dependency>
66             <groupId>javax.ws.rs</groupId>
67             <artifactId>javax.ws.rs-api</artifactId>
68             </dependency>
69
70         <!-- Jersey support needed for OpenStack connector and API version logic -->
71         <dependency>
72             <groupId>com.sun.jersey</groupId>
73             <artifactId>jersey-client</artifactId>
74             </dependency>
75
76         <dependency>
77             <groupId>com.sun.jersey</groupId>
78             <artifactId>jersey-json</artifactId>
79             </dependency>
80
81         <dependency>
82             <groupId>javax.xml.bind</groupId>
83             <artifactId>jaxb-api</artifactId>
84             <version>2.2.3</version>
85         </dependency>
86
87         <!-- Needed to run test cases -->
88         <dependency>
89             <groupId>org.glassfish.jersey.core</groupId>
90             <artifactId>jersey-common</artifactId>
91             <version>2.9.1</version>
92         </dependency>
93
94         <dependency>
95             <groupId>org.codehaus.jackson</groupId>
96             <artifactId>jackson-jaxrs</artifactId>
97             <version>1.9.13</version>
98         </dependency>
99
100         <dependency>
101             <groupId>commons-codec</groupId>
102             <artifactId>commons-codec</artifactId>
103             </dependency>
104
105         <dependency>
106             <groupId>org.apache.httpcomponents</groupId>
107             <artifactId>httpclient</artifactId>
108             <version>4.5.3</version>
109         </dependency>
110
111         <dependency>
112             <groupId>junit</groupId>
113             <artifactId>junit</artifactId>
114             <scope>test</scope>
115         </dependency>
116         <dependency>
117             <groupId>org.onap.ccsdk.sli.core</groupId>
118             <artifactId>sli-common</artifactId>
119             <scope>compile</scope>
120         </dependency>
121
122         <dependency>
123             <groupId>org.onap.ccsdk.sli.core</groupId>
124             <artifactId>sli-provider</artifactId>
125             <scope>compile</scope>
126         </dependency>
127
128         <dependency>
129             <groupId>org.slf4j</groupId>
130             <artifactId>slf4j-api</artifactId>
131         </dependency>
132
133         <dependency>
134             <groupId>org.slf4j</groupId>
135             <artifactId>jcl-over-slf4j</artifactId>
136             </dependency>
137
138         <dependency>
139             <groupId>org.onap.ccsdk.sli.core</groupId>
140             <artifactId>dblib-provider</artifactId>
141         </dependency>
142
143         <dependency>
144             <groupId>com.vmware</groupId>
145             <artifactId>vijava</artifactId>
146             <version>5.1</version>
147             <scope>compile</scope>
148         </dependency>
149
150         <dependency>
151             <groupId>xerces</groupId>
152             <artifactId>xerces</artifactId>
153             <version>2.4.0</version>
154             <scope>provided</scope>
155         </dependency>
156
157         <dependency>
158             <groupId>org.apache.httpcomponents</groupId>
159             <artifactId>httpcore</artifactId>
160             <version>${apache.httpcomponents.version}</version>
161         </dependency>
162
163         <dependency>
164             <groupId>commons-logging</groupId>
165             <artifactId>commons-logging</artifactId>
166             <version>1.2</version>
167         </dependency>
168
169         <dependency>
170             <groupId>org.json</groupId>
171             <artifactId>json</artifactId>
172             </dependency>
173         <dependency>
174             <groupId>com.jcraft</groupId>
175             <artifactId>jsch</artifactId>
176             <version>0.1.54</version>
177         </dependency>
178
179     </dependencies>
180
181     <build>
182         <plugins>
183             <plugin>
184                 <groupId>org.apache.felix</groupId>
185                 <artifactId>maven-bundle-plugin</artifactId>
186                 <extensions>true</extensions>
187                 <configuration>
188                     <instructions>
189                         <Bundle-SymbolicName>appc-netconf-adapter</Bundle-SymbolicName>
190                         <Bundle-Activator>org.onap.appc.adapter.netconf.AppcNetconfAdapterActivator</Bundle-Activator>
191                         <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>
192                         <Import-Package>
193                             !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.*
194                         </Import-Package>
195                         <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>
196                         <Embed-Transitive>true</Embed-Transitive>
197                     </instructions>
198
199 <!--                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> -->
200                 </configuration>
201             </plugin>
202         </plugins>
203     </build>
204
205 </project>