Update license header in misc appc xml files
[appc.git] / appc-dg-util / appc-dg-util-bundle / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 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"
23          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25     <parent>
26         <groupId>org.onap.appc</groupId>
27         <artifactId>appc-dg-util</artifactId>
28         <version>1.4.0-SNAPSHOT</version>
29     </parent>
30
31     <artifactId>appc-dg-util-bundle</artifactId>
32     <packaging>bundle</packaging>
33     <name>appc-dg-util - bundle</name>
34     <properties>
35         <exam.version>4.9.1</exam.version>
36         <url.version>1.6.0</url.version>
37         <sal-netconf-connector.version>1.3.1-Beryllium-SR1</sal-netconf-connector.version>
38     </properties>
39
40     <dependencies>
41         <dependency>
42             <groupId>org.onap.appc</groupId>
43             <artifactId>appc-common</artifactId>
44             <version>${project.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>javax</groupId>
48             <artifactId>javaee-api</artifactId>
49             <version>7.0</version>
50         </dependency>
51         <dependency>
52             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
53             <artifactId>aai-service-provider</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>javax.ws.rs</groupId>
57             <artifactId>javax.ws.rs-api</artifactId>
58         </dependency>
59         <!-- Jersey support needed for OpenStack connector and API version logic -->
60         <dependency>
61             <groupId>com.sun.jersey</groupId>
62             <artifactId>jersey-client</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>com.sun.jersey</groupId>
66             <artifactId>jersey-json</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>javax.xml.bind</groupId>
70             <artifactId>jaxb-api</artifactId>
71             <version>2.2.3</version>
72         </dependency>
73         <dependency>
74             <groupId>javax.xml</groupId>
75             <artifactId>jaxp-api</artifactId>
76             <version>1.4.2</version>
77         </dependency>
78         <!-- Needed to run test cases -->
79         <dependency>
80             <groupId>org.glassfish.jersey.core</groupId>
81             <artifactId>jersey-common</artifactId>
82             <version>2.9.1</version>
83         </dependency>
84         <dependency>
85             <groupId>org.codehaus.jackson</groupId>
86             <artifactId>jackson-jaxrs</artifactId>
87             <version>1.9.13</version>
88         </dependency>
89         <dependency>
90             <groupId>commons-codec</groupId>
91             <artifactId>commons-codec</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>org.apache.httpcomponents</groupId>
95             <artifactId>httpclient</artifactId>
96             <version>4.5.3</version>
97         </dependency>
98         <dependency>
99             <groupId>junit</groupId>
100             <artifactId>junit</artifactId>
101             <scope>test</scope>
102         </dependency>
103         <dependency>
104             <groupId>org.onap.ccsdk.sli.core</groupId>
105             <artifactId>sli-common</artifactId>
106             <scope>compile</scope>
107             <!-- Added exclusion to prevent missing dependency issue on dblib -->
108             <exclusions>
109                 <exclusion>
110                     <groupId>org.onap.ccsdk.sli.core</groupId>
111                     <artifactId>dblib-provider</artifactId>
112                 </exclusion>
113             </exclusions>
114         </dependency>
115
116         <dependency>
117             <groupId>org.onap.ccsdk.sli.core</groupId>
118             <artifactId>sli-provider</artifactId>
119             <scope>compile</scope>
120             <!-- Added exclusion to prevent missing dependency issue on dblib -->
121             <exclusions>
122                 <exclusion>
123                     <groupId>org.onap.ccsdk.sli.core</groupId>
124                     <artifactId>dblib-provider</artifactId>
125                 </exclusion>
126             </exclusions>
127         </dependency>
128         <dependency>
129             <groupId>equinoxSDK381</groupId>
130             <artifactId>org.eclipse.osgi</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>org.slf4j</groupId>
134             <artifactId>slf4j-api</artifactId>
135         </dependency>
136         <dependency>
137             <groupId>org.slf4j</groupId>
138             <artifactId>jcl-over-slf4j</artifactId>
139         </dependency>
140         <dependency>
141             <groupId>org.mariadb.jdbc</groupId>
142             <artifactId>mariadb-java-client</artifactId>
143         </dependency>
144         <dependency>
145             <groupId>com.vmware</groupId>
146             <artifactId>vijava</artifactId>
147             <version>5.1</version>
148             <scope>compile</scope>
149         </dependency>
150         <dependency>
151             <groupId>xerces</groupId>
152             <artifactId>xerces</artifactId>
153             <version>2.4.0</version>
154             <scope>provided</scope>
155         </dependency>
156
157         <dependency>
158             <groupId>org.apache.httpcomponents</groupId>
159             <artifactId>httpcore</artifactId>
160             <version>${apache.httpcomponents.version}</version>
161         </dependency>
162
163         <dependency>
164             <groupId>commons-logging</groupId>
165             <artifactId>commons-logging</artifactId>
166             <version>1.2</version>
167         </dependency>
168         <dependency>
169             <groupId>org.json</groupId>
170             <artifactId>json</artifactId>
171         </dependency>
172         <dependency>
173             <groupId>org.onap.appc</groupId>
174             <artifactId>appc-dmaap-adapter-bundle</artifactId>
175             <version>${project.version}</version>
176         </dependency>
177         <dependency>
178             <groupId>org.onap.appc</groupId>
179             <artifactId>appc-netconf-adapter-bundle</artifactId>
180             <version>1.4.0-SNAPSHOT</version>
181         </dependency>
182         <dependency>
183             <groupId>junit</groupId>
184             <artifactId>junit</artifactId>
185             <scope>test</scope>
186         </dependency>
187         <dependency>
188             <groupId>org.mockito</groupId>
189             <artifactId>mockito-core</artifactId>
190             <scope>test</scope>
191         </dependency>
192         <dependency>
193             <groupId>org.powermock</groupId>
194             <artifactId>powermock-api-mockito</artifactId>
195             <scope>test</scope>
196         </dependency>
197         <dependency>
198             <groupId>org.powermock</groupId>
199             <artifactId>powermock-module-junit4</artifactId>
200             <scope>test</scope>
201         </dependency>
202     </dependencies>
203
204     <build>
205         <plugins>
206             <plugin>
207                 <groupId>org.apache.felix</groupId>
208                 <artifactId>maven-bundle-plugin</artifactId>
209                 <extensions>true</extensions>
210                 <configuration>
211                     <instructions>
212                         <Bundle-SymbolicName>appc-dg-util</Bundle-SymbolicName>
213                         <Bundle-Activator>org.onap.appc.dg.util.AppcDgUtilActivator</Bundle-Activator>
214                         <Export-Package>org.onap.appc.dg.util.*</Export-Package>
215                         <Import-Package>
216                             org.onap.appc.adapter.netconf,
217                             org.onap.appc.adapter.netconf.dao,
218                             org.onap.appc.adapter.netconf.util,com.att.eelf.*,
219                             org.onap.appc.adapter.netconf.exception,
220                             org.onap.appc.adapter.messaging.*,
221                             org.onap.ccsdk.sli.core.sli.*,
222                             org.onap.appc.exceptions,
223                             org.onap.appc.i18n,
224                             org.osgi.framework.*,
225                             org.slf4j.*,
226                             com.vmware.*,
227                             org.apache.xerces.*,
228                             javax.net.*,
229                             javax.net.ssl.*,
230                             org.xml.sax.*,
231                             javax.xml.bind.*,
232                             javax.naming.*,
233                             com.fasterxml.*,
234                             javax.xml.parsers,
235                             *;resolution:=optional
236                         </Import-Package>
237                     </instructions>
238                 </configuration>
239             </plugin>
240         </plugins>
241     </build>
242
243 </project>