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.1</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                 <dependency>
96                 <groupId>org.json</groupId>
97                 <artifactId>json</artifactId>
98                 </dependency>
99
100                 <dependency>
101                         <groupId>javax.xml.bind</groupId>
102                         <artifactId>jaxb-api</artifactId>
103                         <version>2.2.3</version>
104                 </dependency>
105
106                 <dependency>
107                         <groupId>javax.xml</groupId>
108                         <artifactId>jaxp-api</artifactId>
109                         <version>1.4.2</version>
110                 </dependency>
111
112                 <!-- Needed to run test cases -->
113                 <dependency>
114                         <groupId>org.glassfish.jersey.core</groupId>
115                         <artifactId>jersey-common</artifactId>
116                         <version>2.9.1</version>
117             <scope>test</scope>
118                 </dependency>
119
120
121                 <dependency>
122                         <groupId>commons-codec</groupId>
123                         <artifactId>commons-codec</artifactId>
124                 </dependency>
125
126                 <dependency>
127                         <groupId>junit</groupId>
128                         <artifactId>junit</artifactId>
129                         <scope>test</scope>
130                 </dependency>
131
132                 <dependency>
133                         <groupId>org.onap.ccsdk.sli.core</groupId>
134                         <artifactId>sli-common</artifactId>
135                         <scope>compile</scope>
136                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
137                         <exclusions>
138                                 <exclusion>
139                                         <groupId>org.onap.ccsdk.sli.core</groupId>
140                                         <artifactId>dblib-provider</artifactId>
141                                 </exclusion>
142                         </exclusions>
143                 </dependency>
144
145                 <dependency>
146                         <groupId>org.onap.ccsdk.sli.core</groupId>
147                         <artifactId>sli-provider</artifactId>
148                         <scope>compile</scope>
149                         <!-- Added exclusion to prevent missing dependency issue on dblib -->
150                         <exclusions>
151                                 <exclusion>
152                                         <groupId>org.onap.ccsdk.sli.core</groupId>
153                                         <artifactId>dblib-provider</artifactId>
154                                 </exclusion>
155                         </exclusions>
156                 </dependency>
157
158 <!--            <dependency> -->
159 <!--                    <groupId>equinoxSDK381</groupId> -->
160 <!--                    <artifactId>org.eclipse.osgi</artifactId> -->
161 <!--            </dependency> -->
162
163                 <dependency>
164                         <groupId>org.slf4j</groupId>
165                         <artifactId>slf4j-api</artifactId>
166                 </dependency>
167
168                 <dependency>
169                         <groupId>org.slf4j</groupId>
170                         <artifactId>jcl-over-slf4j</artifactId>
171                 </dependency>
172
173                         <dependency>
174                                 <groupId>org.mariadb.jdbc</groupId>
175                                 <artifactId>mariadb-java-client</artifactId>
176                 <version>${mariadb.client.version}</version>
177                 </dependency>
178
179                 <dependency>
180                         <groupId>org.osgi</groupId>
181                         <artifactId>org.osgi.core</artifactId>
182                         <scope>provided</scope>
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>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>
213             <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>
214                                                 <Embed-Transitive>true</Embed-Transitive>
215                                         </instructions>
216                                 </configuration>
217                         </plugin>
218                 </plugins>
219         </build>
220         <version>1.6.3</version>
221 </project>