Release appc
[appc.git] / appc-adapters / appc-netconf-adapter / appc-netconf-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     <artifactId>appc-netconf-adapter-bundle</artifactId>
32     <groupId>org.onap.appc</groupId>
33     <version>1.7.2</version>
34     <packaging>bundle</packaging>
35     <name>NETCONF Adapter - bundle</name>
36     <properties>
37         <exam.version>4.9.1</exam.version>
38         <url.version>1.6.0</url.version>
39         <sal-netconf-connector.version>1.3.1-Beryllium-SR1</sal-netconf-connector.version>
40     </properties>
41
42     <dependencies>
43         <dependency>
44             <groupId>org.onap.appc</groupId>
45             <artifactId>appc-common-bundle</artifactId>
46             <version>${project.version}</version>
47         </dependency>
48
49         <dependency>
50             <groupId>javax</groupId>
51             <artifactId>javaee-api</artifactId>
52             <version>7.0</version>
53         </dependency>
54
55         <dependency>
56             <groupId>com.att.cdp</groupId>
57             <artifactId>cdp-pal-common</artifactId>
58             <scope>compile</scope>
59             <version>${cdp.pal.version}</version>
60             <exclusions>
61                 <exclusion>
62                   <groupId>ch.qos.logback</groupId>
63                   <artifactId>logback-classic</artifactId>
64                 </exclusion>
65             </exclusions>
66         </dependency>
67
68         <dependency>
69             <groupId>com.att.cdp</groupId>
70             <artifactId>cdp-pal-openstack</artifactId>
71             <scope>compile</scope>
72             <version>${cdp.pal.version}</version>
73             <exclusions>
74                   <exclusion>
75                        <groupId>com.att.cdp</groupId>
76                        <artifactId>cdp-pal-common</artifactId>
77                   </exclusion>
78             </exclusions>
79         </dependency>
80
81         <dependency>
82             <groupId>javax.ws.rs</groupId>
83             <artifactId>javax.ws.rs-api</artifactId>
84             </dependency>
85
86         <dependency>
87             <groupId>javax.xml.bind</groupId>
88             <artifactId>jaxb-api</artifactId>
89             <version>2.2.3</version>
90         </dependency>
91
92         <!-- Needed to run test cases -->
93         <dependency>
94             <groupId>org.glassfish.jersey.core</groupId>
95             <artifactId>jersey-common</artifactId>
96             <version>2.9.1</version>
97         </dependency>
98
99         <dependency>
100             <groupId>org.codehaus.jackson</groupId>
101             <artifactId>jackson-jaxrs</artifactId>
102             <version>1.9.13</version>
103         </dependency>
104
105         <dependency>
106             <groupId>commons-codec</groupId>
107             <artifactId>commons-codec</artifactId>
108             </dependency>
109
110         <dependency>
111             <groupId>org.apache.httpcomponents</groupId>
112             <artifactId>httpclient</artifactId>
113             <version>4.5.3</version>
114         </dependency>
115
116         <dependency>
117             <groupId>junit</groupId>
118             <artifactId>junit</artifactId>
119             <scope>test</scope>
120         </dependency>
121         <dependency>
122             <groupId>org.onap.ccsdk.sli.core</groupId>
123             <artifactId>sli-common</artifactId>
124             <scope>compile</scope>
125         </dependency>
126
127         <dependency>
128             <groupId>org.onap.ccsdk.sli.core</groupId>
129             <artifactId>sli-provider</artifactId>
130             <scope>compile</scope>
131         </dependency>
132
133         <dependency>
134             <groupId>org.osgi</groupId>
135             <artifactId>org.osgi.core</artifactId>
136             <scope>provided</scope>
137         </dependency>
138
139         <dependency>
140             <groupId>org.slf4j</groupId>
141             <artifactId>slf4j-api</artifactId>
142         </dependency>
143
144         <dependency>
145             <groupId>org.slf4j</groupId>
146             <artifactId>jcl-over-slf4j</artifactId>
147             </dependency>
148
149         <dependency>
150             <groupId>org.onap.ccsdk.sli.core</groupId>
151             <artifactId>dblib-provider</artifactId>
152         </dependency>
153
154         <dependency>
155             <groupId>com.vmware</groupId>
156             <artifactId>vijava</artifactId>
157             <version>5.1</version>
158             <scope>compile</scope>
159         </dependency>
160
161         <dependency>
162             <groupId>xerces</groupId>
163             <artifactId>xerces</artifactId>
164             <version>2.4.0</version>
165             <scope>provided</scope>
166         </dependency>
167
168         <dependency>
169             <groupId>org.apache.httpcomponents</groupId>
170             <artifactId>httpcore</artifactId>
171             <version>${apache.httpcomponents.version}</version>
172         </dependency>
173
174         <dependency>
175             <groupId>commons-logging</groupId>
176             <artifactId>commons-logging</artifactId>
177             <version>1.2</version>
178         </dependency>
179
180         <dependency>
181             <groupId>org.json</groupId>
182             <artifactId>json</artifactId>
183             </dependency>
184         <dependency>
185             <groupId>com.jcraft</groupId>
186             <artifactId>jsch</artifactId>
187             <version>0.1.54</version>
188         </dependency>
189         <dependency>
190           <groupId>org.hamcrest</groupId>
191           <artifactId>hamcrest-all</artifactId>
192           <version>1.3</version>
193           <scope>test</scope>
194         </dependency>
195     </dependencies>
196
197     <build>
198         <plugins>
199             <plugin>
200                 <groupId>org.apache.felix</groupId>
201                 <artifactId>maven-bundle-plugin</artifactId>
202                 <extensions>true</extensions>
203                 <configuration>
204                     <instructions>
205                         <Bundle-SymbolicName>appc-netconf-adapter</Bundle-SymbolicName>
206                         <Bundle-Activator>org.onap.appc.adapter.netconf.AppcNetconfAdapterActivator</Bundle-Activator>
207                         <Export-Package>org.onap.appc.adapter.netconf,org.onap.appc.adapter.netconf.dao,org.onap.appc.adapter.netconf.util,org.onap.appc.adapter.netconf.exception</Export-Package>
208                         <Import-Package>
209                             !org.slf4j.event,org.w3c.dom.*,com.sun.org.apache.xerces.*,javax.sql.*,javax.sql.rowset.*,javax.xml.*,org.onap.appc.adapter.messaging.*,javax.crypto.*,org.onap.appc.common.exception.*,org.mariadb.*,org.onap.ccsdk.sli.core.sli.*,org.onap.ccsdk.sli.core.dblib,org.osgi.framework.*,org.slf4j.*,com.vmware.*,org.apache.xerces.*,javax.net.*,javax.net.ssl.*,org.xml.sax.*,javax.xml.bind.*,javax.naming.*
210                         </Import-Package>
211                         <Embed-Dependency>*;scope=compile|runtime;artifactId=!dblib-provider|sli-common|org.eclipse.osgi|slf4j-api|jcl-over-slf4j|mariadb-java-client|xml-apis|appc-dmaap-adapter-bundle</Embed-Dependency>
212                         <Embed-Transitive>true</Embed-Transitive>
213                     </instructions>
214
215 <!--                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation> -->
216                 </configuration>
217             </plugin>
218         </plugins>
219     </build>
220
221 </project>