blob: 456f0bea52ccd230d77640af2dadd6793d1331e4 [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Patrick Brady13c03532019-02-22 13:37:19 -08006 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Skip Wonnell8c4b89b2018-01-12 09:24:03 -06007 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=========================================================
Skip Wonnell8c4b89b2018-01-12 09:24:03 -060021 -->
Patrick Brady57b5eef2017-02-10 15:00:49 -080022<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>
Patrick Brady7f383f92018-07-30 14:35:31 -070025 <groupId>org.onap.appc.parent</groupId>
26 <artifactId>binding-parent</artifactId>
Patrick Brady19ae7802019-01-08 12:25:10 -080027 <version>1.5.0-SNAPSHOT</version>
Patrick Brady7f383f92018-07-30 14:35:31 -070028 <relativePath />
Patrick Brady57b5eef2017-02-10 15:00:49 -080029 </parent>
30
Patrick Brady7f383f92018-07-30 14:35:31 -070031 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080032 <artifactId>appc-rest-adapter-bundle</artifactId>
33 <packaging>bundle</packaging>
34 <name>rest Adapter - bundle</name>
35
36 <dependencies>
37 <dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080038 <groupId>commons-logging</groupId>
39 <artifactId>commons-logging</artifactId>
40 <version>1.2</version>
41 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080042 <dependency>
43 <groupId>org.apache.httpcomponents</groupId>
44 <artifactId>httpcore</artifactId>
45 <version>4.4.4</version>
46 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080047 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080048 <groupId>org.onap.appc</groupId>
Patrick Brady7f383f92018-07-30 14:35:31 -070049 <artifactId>appc-common-bundle</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080050 <version>${project.version}</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -070051 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -080052 <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>
Patrick Brady7f383f92018-07-30 14:35:31 -070068 <version>${cdp.pal.version}</version>
Patrick Brady28da5022018-09-17 12:52:55 -070069 <exclusions>
70 <exclusion>
71 <groupId>ch.qos.logback</groupId>
72 <artifactId>logback-classic</artifactId>
73 </exclusion>
74 </exclusions>
Patrick Brady57b5eef2017-02-10 15:00:49 -080075 </dependency>
76
77 <dependency>
78 <groupId>com.att.cdp</groupId>
79 <artifactId>cdp-pal-openstack</artifactId>
80 <scope>compile</scope>
Patrick Brady7f383f92018-07-30 14:35:31 -070081 <version>${cdp.pal.version}</version>
Patrick Brady28da5022018-09-17 12:52:55 -070082 <exclusions>
83 <exclusion>
84 <groupId>com.att.cdp</groupId>
85 <artifactId>cdp-pal-common</artifactId>
86 </exclusion>
87 </exclusions>
Patrick Brady57b5eef2017-02-10 15:00:49 -080088 </dependency>
89
90 <dependency>
91 <groupId>javax.ws.rs</groupId>
92 <artifactId>javax.ws.rs-api</artifactId>
93 </dependency>
94
95 <!-- Jersey support needed for OpenStack connector and API version logic -->
96 <dependency>
97 <groupId>com.sun.jersey</groupId>
98 <artifactId>jersey-client</artifactId>
99 </dependency>
100
101 <dependency>
102 <groupId>org.json</groupId>
103 <artifactId>json</artifactId>
104 </dependency>
105 <dependency>
Taka Cho65143042019-03-11 16:22:03 -0400106 <groupId>com.sun.jersey</groupId>
107 <artifactId>jersey-json</artifactId>
108 <exclusions>
109 <exclusion>
110 <groupId>org.codehaus.jackson</groupId>
111 <artifactId>jackson-mapper-asl</artifactId>
112 </exclusion>
113 </exclusions>
114 </dependency>
115 <dependency>
116 <groupId>org.codehaus.jackson</groupId>
117 <artifactId>jackson-mapper-asl</artifactId>
118 <version>1.9.3</version>
119 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800120
121 <dependency>
122 <groupId>javax.xml.bind</groupId>
123 <artifactId>jaxb-api</artifactId>
Taka0f18e352017-12-19 16:25:07 -0500124 <version>2.2.3</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800125 </dependency>
126
127 <dependency>
128 <groupId>javax.xml</groupId>
129 <artifactId>jaxp-api</artifactId>
130 <version>1.4.2</version>
131 </dependency>
132
133 <!-- Needed to run test cases -->
134 <dependency>
135 <groupId>org.glassfish.jersey.core</groupId>
136 <artifactId>jersey-common</artifactId>
137 <version>2.9.1</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700138 <scope>test</scope>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800139 </dependency>
140
Patrick Brady57b5eef2017-02-10 15:00:49 -0800141
142 <dependency>
143 <groupId>commons-codec</groupId>
144 <artifactId>commons-codec</artifactId>
145 </dependency>
146
147 <dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800148 <groupId>junit</groupId>
149 <artifactId>junit</artifactId>
150 <scope>test</scope>
151 </dependency>
152
153 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700154 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800155 <artifactId>sli-common</artifactId>
156 <scope>compile</scope>
157 <!-- Added exclusion to prevent missing dependency issue on dblib -->
158 <exclusions>
159 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700160 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800161 <artifactId>dblib-provider</artifactId>
162 </exclusion>
163 </exclusions>
164 </dependency>
165
166 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700167 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800168 <artifactId>sli-provider</artifactId>
169 <scope>compile</scope>
170 <!-- Added exclusion to prevent missing dependency issue on dblib -->
171 <exclusions>
172 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700173 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800174 <artifactId>dblib-provider</artifactId>
175 </exclusion>
176 </exclusions>
177 </dependency>
178
Patrick Bradyc7d00752017-06-01 10:45:37 -0700179<!-- <dependency> -->
180<!-- <groupId>equinoxSDK381</groupId> -->
181<!-- <artifactId>org.eclipse.osgi</artifactId> -->
182<!-- </dependency> -->
Patrick Brady57b5eef2017-02-10 15:00:49 -0800183
184 <dependency>
185 <groupId>org.slf4j</groupId>
186 <artifactId>slf4j-api</artifactId>
187 </dependency>
188
189 <dependency>
190 <groupId>org.slf4j</groupId>
191 <artifactId>jcl-over-slf4j</artifactId>
Patrick Brady13c03532019-02-22 13:37:19 -0800192 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800193
Patrick Bradyac62a4a2017-09-13 00:11:21 -0700194 <dependency>
195 <groupId>org.mariadb.jdbc</groupId>
196 <artifactId>mariadb-java-client</artifactId>
Patrick Brady7f383f92018-07-30 14:35:31 -0700197 <version>${mariadb.client.version}</version>
Patrick Brady13c03532019-02-22 13:37:19 -0800198 </dependency>
199
200 <dependency>
201 <groupId>org.osgi</groupId>
202 <artifactId>org.osgi.core</artifactId>
203 <scope>provided</scope>
204 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800205
206 <dependency>
207 <groupId>com.vmware</groupId>
208 <artifactId>vijava</artifactId>
209 <version>5.1</version>
210 <scope>compile</scope>
211 </dependency>
212
213 <dependency>
214 <groupId>xerces</groupId>
215 <artifactId>xerces</artifactId>
216 <version>2.4.0</version>
217 <scope>provided</scope>
218 </dependency>
219
220 </dependencies>
221
222 <build>
223 <plugins>
224 <plugin>
225 <groupId>org.apache.felix</groupId>
226 <artifactId>maven-bundle-plugin</artifactId>
227 <extensions>true</extensions>
228 <configuration>
229 <instructions>
230 <Bundle-SymbolicName>appc-rest-adapter</Bundle-SymbolicName>
Patrick Brady07567592017-12-13 11:09:30 -0800231 <Bundle-Activator>org.onap.appc.adapter.rest.RestActivator</Bundle-Activator>
232 <Export-Package>org.onap.appc.adapter.rest</Export-Package>
Patrick Brady50472bf2019-01-03 11:21:43 -0800233 <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>
234 <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>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800235 <Embed-Transitive>true</Embed-Transitive>
236 </instructions>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800237 </configuration>
238 </plugin>
239 </plugins>
240 </build>
Patrick Bradyccd67e92018-11-12 12:14:11 -0800241 <version>1.5.0-SNAPSHOT</version>
Taka0f18e352017-12-19 16:25:07 -0500242</project>