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