blob: 0f2b9304a1862a7057e89c52eef5465ec75eefda [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>
Patrick Brady58922872019-03-18 13:21:04 -0700106 <groupId>com.sun.jersey</groupId>
107 <artifactId>jersey-json</artifactId>
108 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800109
110 <dependency>
111 <groupId>javax.xml.bind</groupId>
112 <artifactId>jaxb-api</artifactId>
Taka0f18e352017-12-19 16:25:07 -0500113 <version>2.2.3</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800114 </dependency>
115
116 <dependency>
117 <groupId>javax.xml</groupId>
118 <artifactId>jaxp-api</artifactId>
119 <version>1.4.2</version>
120 </dependency>
121
122 <!-- Needed to run test cases -->
123 <dependency>
124 <groupId>org.glassfish.jersey.core</groupId>
125 <artifactId>jersey-common</artifactId>
126 <version>2.9.1</version>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700127 <scope>test</scope>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800128 </dependency>
129
Patrick Brady57b5eef2017-02-10 15:00:49 -0800130
131 <dependency>
132 <groupId>commons-codec</groupId>
133 <artifactId>commons-codec</artifactId>
134 </dependency>
135
136 <dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800137 <groupId>junit</groupId>
138 <artifactId>junit</artifactId>
139 <scope>test</scope>
140 </dependency>
141
142 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700143 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800144 <artifactId>sli-common</artifactId>
145 <scope>compile</scope>
146 <!-- Added exclusion to prevent missing dependency issue on dblib -->
147 <exclusions>
148 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700149 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800150 <artifactId>dblib-provider</artifactId>
151 </exclusion>
152 </exclusions>
153 </dependency>
154
155 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -0700156 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800157 <artifactId>sli-provider</artifactId>
158 <scope>compile</scope>
159 <!-- Added exclusion to prevent missing dependency issue on dblib -->
160 <exclusions>
161 <exclusion>
Patrick Brady76706002017-09-04 21:37:25 -0700162 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800163 <artifactId>dblib-provider</artifactId>
164 </exclusion>
165 </exclusions>
166 </dependency>
167
Patrick Bradyc7d00752017-06-01 10:45:37 -0700168<!-- <dependency> -->
169<!-- <groupId>equinoxSDK381</groupId> -->
170<!-- <artifactId>org.eclipse.osgi</artifactId> -->
171<!-- </dependency> -->
Patrick Brady57b5eef2017-02-10 15:00:49 -0800172
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>
Patrick Brady13c03532019-02-22 13:37:19 -0800181 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800182
Patrick Bradyac62a4a2017-09-13 00:11:21 -0700183 <dependency>
184 <groupId>org.mariadb.jdbc</groupId>
185 <artifactId>mariadb-java-client</artifactId>
Patrick Brady7f383f92018-07-30 14:35:31 -0700186 <version>${mariadb.client.version}</version>
Patrick Brady13c03532019-02-22 13:37:19 -0800187 </dependency>
188
189 <dependency>
190 <groupId>org.osgi</groupId>
191 <artifactId>org.osgi.core</artifactId>
192 <scope>provided</scope>
193 </dependency>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800194
195 <dependency>
196 <groupId>com.vmware</groupId>
197 <artifactId>vijava</artifactId>
198 <version>5.1</version>
199 <scope>compile</scope>
200 </dependency>
201
202 <dependency>
203 <groupId>xerces</groupId>
204 <artifactId>xerces</artifactId>
205 <version>2.4.0</version>
206 <scope>provided</scope>
207 </dependency>
208
209 </dependencies>
210
211 <build>
212 <plugins>
213 <plugin>
214 <groupId>org.apache.felix</groupId>
215 <artifactId>maven-bundle-plugin</artifactId>
216 <extensions>true</extensions>
217 <configuration>
218 <instructions>
219 <Bundle-SymbolicName>appc-rest-adapter</Bundle-SymbolicName>
Patrick Brady07567592017-12-13 11:09:30 -0800220 <Bundle-Activator>org.onap.appc.adapter.rest.RestActivator</Bundle-Activator>
221 <Export-Package>org.onap.appc.adapter.rest</Export-Package>
Patrick Brady50472bf2019-01-03 11:21:43 -0800222 <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>
223 <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 -0800224 <Embed-Transitive>true</Embed-Transitive>
225 </instructions>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800226 </configuration>
227 </plugin>
228 </plugins>
229 </build>
Patrick Bradyed1cf1f2019-04-26 12:36:25 -0700230 <version>1.6.0-SNAPSHOT</version>
Taka0f18e352017-12-19 16:25:07 -0500231</project>