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