upgrade bcprov to 1.60
[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-2018 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.4.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                 </dependency>
52                 <dependency>
53                         <groupId>javax</groupId>
54                         <artifactId>javaee-api</artifactId>
55                         <version>7.0</version>
56                 </dependency>
57 <!--            <dependency> -->
58 <!--                    <groupId>jce</groupId> -->
59 <!--                    <artifactId>jce</artifactId> -->
60 <!--                    <version>1_2-do</version> -->
61 <!--                    <scope>compile</scope> -->
62 <!--            </dependency> -->
63
64                 <dependency>
65                         <groupId>com.att.cdp</groupId>
66                         <artifactId>cdp-pal-common</artifactId>
67                         <scope>compile</scope>
68                         <version>${cdp.pal.version}</version>
69                 </dependency>
70
71                 <dependency>
72                         <groupId>com.att.cdp</groupId>
73                         <artifactId>cdp-pal-openstack</artifactId>
74                         <scope>compile</scope>
75                         <version>${cdp.pal.version}</version>
76                 </dependency>
77
78                 <dependency>
79                         <groupId>javax.ws.rs</groupId>
80                         <artifactId>javax.ws.rs-api</artifactId>
81                         </dependency>
82
83                 <!-- Jersey support needed for OpenStack connector and API version logic -->
84                 <dependency>
85                         <groupId>com.sun.jersey</groupId>
86                         <artifactId>jersey-client</artifactId>
87                         </dependency>
88
89                 <dependency>
90                 <groupId>org.json</groupId>
91                 <artifactId>json</artifactId>
92                 </dependency>
93                 <dependency>
94                         <groupId>com.sun.jersey</groupId>
95                         <artifactId>jersey-json</artifactId>
96                         </dependency>
97
98                 <dependency>
99                         <groupId>javax.xml.bind</groupId>
100                         <artifactId>jaxb-api</artifactId>
101                         <version>2.2.3</version>
102                 </dependency>
103
104                 <dependency>
105                         <groupId>javax.xml</groupId>
106                         <artifactId>jaxp-api</artifactId>
107                         <version>1.4.2</version>
108                 </dependency>
109
110                 <!-- Needed to run test cases -->
111                 <dependency>
112                         <groupId>org.glassfish.jersey.core</groupId>
113                         <artifactId>jersey-common</artifactId>
114                         <version>2.9.1</version>
115             <scope>test</scope>
116                 </dependency>
117
118
119                 <dependency>
120                         <groupId>commons-codec</groupId>
121                         <artifactId>commons-codec</artifactId>
122                 </dependency>
123
124                 <dependency>
125                         <groupId>junit</groupId>
126                         <artifactId>junit</artifactId>
127                         <scope>test</scope>
128                 </dependency>
129
130                 <dependency>
131                         <groupId>org.onap.ccsdk.sli.core</groupId>
132                         <artifactId>sli-common</artifactId>
133                         <scope>compile</scope>
134                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
135                         <exclusions>
136                                 <exclusion>
137                                         <groupId>org.onap.ccsdk.sli.core</groupId>
138                                         <artifactId>dblib-provider</artifactId>
139                                 </exclusion>
140                         </exclusions>
141                 </dependency>
142
143                 <dependency>
144                         <groupId>org.onap.ccsdk.sli.core</groupId>
145                         <artifactId>sli-provider</artifactId>
146                         <scope>compile</scope>
147                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
148                         <exclusions>
149                                 <exclusion>
150                                         <groupId>org.onap.ccsdk.sli.core</groupId>
151                                         <artifactId>dblib-provider</artifactId>
152                                 </exclusion>
153                         </exclusions>
154                 </dependency>
155
156 <!--            <dependency> -->
157 <!--                    <groupId>equinoxSDK381</groupId> -->
158 <!--                    <artifactId>org.eclipse.osgi</artifactId> -->
159 <!--            </dependency> -->
160
161                 <dependency>
162                         <groupId>org.slf4j</groupId>
163                         <artifactId>slf4j-api</artifactId>
164                 </dependency>
165
166                 <dependency>
167                         <groupId>org.slf4j</groupId>
168                         <artifactId>jcl-over-slf4j</artifactId>
169                         </dependency>
170
171                         <dependency>
172                                 <groupId>org.mariadb.jdbc</groupId>
173                                 <artifactId>mariadb-java-client</artifactId>
174                 <version>${mariadb.client.version}</version>
175                         </dependency>
176
177                 <dependency>
178                         <groupId>com.vmware</groupId>
179                         <artifactId>vijava</artifactId>
180                         <version>5.1</version>
181                         <scope>compile</scope>
182                 </dependency>
183
184                 <dependency>
185                         <groupId>xerces</groupId>
186                         <artifactId>xerces</artifactId>
187                         <version>2.4.0</version>
188                         <scope>provided</scope>
189                 </dependency>
190
191         </dependencies>
192
193         <build>
194                 <plugins>
195                         <plugin>
196                                 <groupId>org.apache.felix</groupId>
197                                 <artifactId>maven-bundle-plugin</artifactId>
198                                 <extensions>true</extensions>
199                                 <configuration>
200                                         <instructions>
201                                                 <Bundle-SymbolicName>appc-rest-adapter</Bundle-SymbolicName>
202                                                 <Bundle-Activator>org.onap.appc.adapter.rest.RestActivator</Bundle-Activator>
203                                                 <Export-Package>org.onap.appc.adapter.rest</Export-Package>
204                                                 <Import-Package>*</Import-Package>
205                                                 <Embed-Transitive>true</Embed-Transitive>
206                                         </instructions>
207                                 </configuration>
208                         </plugin>
209                 </plugins>
210         </build>
211 </project>