Release appc
[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-2019 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>2.6.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                         <exclusions>
70                             <exclusion>
71                                  <groupId>ch.qos.logback</groupId>
72                                  <artifactId>logback-classic</artifactId>
73                             </exclusion>
74                         </exclusions>
75                 </dependency>
76
77                 <dependency>
78                         <groupId>com.att.cdp</groupId>
79                         <artifactId>cdp-pal-openstack</artifactId>
80                         <scope>compile</scope>
81                         <version>${cdp.pal.version}</version>
82                         <exclusions>
83                             <exclusion>
84                                  <groupId>com.att.cdp</groupId>
85                                  <artifactId>cdp-pal-common</artifactId>
86                             </exclusion>
87                         </exclusions>
88                 </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>
106                         <groupId>com.sun.jersey</groupId>
107                         <artifactId>jersey-json</artifactId>
108                         </dependency>
109
110                 <dependency>
111                         <groupId>javax.xml.bind</groupId>
112                         <artifactId>jaxb-api</artifactId>
113                         <version>2.2.3</version>
114                 </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>
127             <scope>test</scope>
128                 </dependency>
129
130
131                 <dependency>
132                         <groupId>commons-codec</groupId>
133                         <artifactId>commons-codec</artifactId>
134                 </dependency>
135
136                 <dependency>
137                         <groupId>junit</groupId>
138                         <artifactId>junit</artifactId>
139                         <scope>test</scope>
140                 </dependency>
141
142                 <dependency>
143                         <groupId>org.onap.ccsdk.sli.core</groupId>
144                         <artifactId>sli-common</artifactId>
145                         <scope>compile</scope>
146                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
147                         <exclusions>
148                                 <exclusion>
149                                         <groupId>org.onap.ccsdk.sli.core</groupId>
150                                         <artifactId>dblib-provider</artifactId>
151                                 </exclusion>
152                         </exclusions>
153                 </dependency>
154
155                 <dependency>
156                         <groupId>org.onap.ccsdk.sli.core</groupId>
157                         <artifactId>sli-provider</artifactId>
158                         <scope>compile</scope>
159                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
160                         <exclusions>
161                                 <exclusion>
162                                         <groupId>org.onap.ccsdk.sli.core</groupId>
163                                         <artifactId>dblib-provider</artifactId>
164                                 </exclusion>
165                         </exclusions>
166                 </dependency>
167
168 <!--            <dependency> -->
169 <!--                    <groupId>equinoxSDK381</groupId> -->
170 <!--                    <artifactId>org.eclipse.osgi</artifactId> -->
171 <!--            </dependency> -->
172
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>
181                 </dependency>
182
183                         <dependency>
184                                 <groupId>org.mariadb.jdbc</groupId>
185                                 <artifactId>mariadb-java-client</artifactId>
186                 <version>${mariadb.client.version}</version>
187                 </dependency>
188
189                 <dependency>
190                         <groupId>org.osgi</groupId>
191                         <artifactId>org.osgi.core</artifactId>
192                         <scope>provided</scope>
193                 </dependency>
194
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>
220                                                 <Bundle-Activator>org.onap.appc.adapter.rest.RestActivator</Bundle-Activator>
221                                                 <Export-Package>org.onap.appc.adapter.rest</Export-Package>
222                                                 <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>
224                                                 <Embed-Transitive>true</Embed-Transitive>
225                                         </instructions>
226                                 </configuration>
227                         </plugin>
228                 </plugins>
229         </build>
230         <version>1.6.0</version>
231 </project>