Release appc
[appc.git] / appc-sdc-listener / appc-sdc-listener-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 ================================================================================
8 Copyright (C) 2017 Amdocs
9 =============================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
13
14       http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21 ============LICENSE_END=========================================================
22 -->
23 <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">
24         <modelVersion>4.0.0</modelVersion>
25
26
27         <parent>
28                 <groupId>org.onap.appc.parent</groupId>
29                 <artifactId>binding-parent</artifactId>
30                 <version>2.7.2</version>
31                 <relativePath/>
32         </parent>
33         <groupId>org.onap.appc</groupId>
34
35         <properties>
36                 <jackson-yaml-version>2.8.6</jackson-yaml-version>
37         </properties>
38
39         <artifactId>appc-sdc-listener-bundle</artifactId>
40     <version>1.7.2</version>
41         <packaging>bundle</packaging>
42
43         <dependencies>
44
45                 <dependency>
46                         <groupId>equinoxSDK381</groupId>
47                         <artifactId>org.eclipse.osgi</artifactId>
48                 </dependency>
49
50                 <dependency>
51                         <groupId>org.json</groupId>
52                         <artifactId>json</artifactId>
53                         <scope>compile</scope>
54                 </dependency>
55
56                 <dependency>
57                         <groupId>org.mockito</groupId>
58                         <artifactId>mockito-core</artifactId>
59                         <version>1.10.19</version>
60                         <scope>test</scope>
61                 </dependency>
62                 <dependency>
63                         <groupId>org.powermock</groupId>
64                         <artifactId>powermock-module-junit4</artifactId>
65                         <version>1.6.4</version>
66                         <scope>test</scope>
67                 </dependency>
68                 <dependency>
69                         <groupId>org.powermock</groupId>
70                         <artifactId>powermock-api-mockito</artifactId>
71                         <version>1.6.4</version>
72                         <scope>test</scope>
73                 </dependency>
74                 <dependency>
75                         <groupId>org.javassist</groupId>
76                         <artifactId>javassist</artifactId>
77                         <version>3.22.0-GA</version>
78                         <scope>test</scope>
79                 </dependency>
80
81                 <dependency>
82                         <groupId>org.onap.sdc.sdc-distribution-client</groupId>
83                         <artifactId>sdc-distribution-client</artifactId>
84                         <version>${sdc-client.version}</version>
85                 </dependency>
86
87                 <dependency>
88                         <groupId>org.onap.appc</groupId>
89                         <artifactId>appc-service-communicator-bundle</artifactId>
90                         <version>${project.version}</version>
91                 </dependency>
92
93                 <dependency>
94                         <groupId>org.yaml</groupId>
95                         <artifactId>snakeyaml</artifactId>
96                 </dependency>
97
98                 <dependency>
99                         <groupId>org.onap.appc</groupId>
100                         <artifactId>appc-common-bundle</artifactId>
101                         <version>${project.version}</version>
102                 </dependency>
103
104
105                 <dependency>
106                         <groupId>junit</groupId>
107                         <artifactId>junit</artifactId>
108                         <scope>compile</scope>
109                 </dependency>
110
111                 <dependency>
112                         <groupId>com.att.eelf</groupId>
113                         <artifactId>eelf-core</artifactId>
114                 </dependency>
115                 <dependency>
116                         <groupId>com.att.nsa</groupId>
117                         <artifactId>cambriaClient</artifactId>
118                         <version>${cambriaClient.version}</version>
119                 </dependency>
120                 <dependency>
121                         <groupId>com.att.nsa</groupId>
122                         <artifactId>saClientLibrary</artifactId>
123                         <version>${saClientLibrary.version}</version>
124                 </dependency>
125                 <dependency>
126                         <groupId>ch.qos.logback</groupId>
127                         <artifactId>logback-core</artifactId>
128                 </dependency>
129                 <dependency>
130                         <groupId>ch.qos.logback</groupId>
131                         <artifactId>logback-classic</artifactId>
132                 </dependency>
133                 <dependency>
134                         <groupId>org.functionaljava</groupId>
135                         <artifactId>functionaljava</artifactId>
136                         <version>4.2</version>
137                 </dependency>
138                 <dependency>
139                         <groupId>org.apache.httpcomponents</groupId>
140                         <artifactId>httpcore</artifactId>
141                         <version>4.4.1</version>
142                 </dependency>
143                 <dependency>
144                         <groupId>org.apache.httpcomponents</groupId>
145                         <artifactId>httpclient</artifactId>
146                         <version>4.5.3</version>
147                 </dependency>
148
149                 <dependency>
150                         <groupId>org.onap.appc</groupId>
151                         <artifactId>appc-license-manager-api</artifactId>
152                         <!-- <version>${project.version}</version> -->
153                         <version>${project.version}</version>
154                 </dependency>
155
156                 <dependency>
157                         <groupId>com.google.code.gson</groupId>
158                         <artifactId>gson</artifactId>
159                 </dependency>
160
161                 <dependency>
162                         <groupId>org.apache.velocity</groupId>
163                         <artifactId>velocity</artifactId>
164                         <version>1.7</version>
165                         <exclusions>
166                              <exclusion>
167                                   <artifactId>commons-collections</artifactId>
168                                   <groupId>commons-collections</groupId>
169                              </exclusion>
170                         </exclusions>
171                  </dependency>
172                  <dependency>
173                      <groupId>commons-collections</groupId>
174                      <artifactId>commons-collections</artifactId>
175                      <version>3.2.2</version>
176                  </dependency>
177                  <dependency>
178                         <groupId>org.opendaylight.yangtools</groupId>
179                         <artifactId>yang-parser-impl</artifactId>
180                 </dependency>
181
182                 <dependency>
183             <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
184             <artifactId>rfc6991</artifactId>
185         </dependency>
186
187                 
188
189                 <dependency>
190                         <groupId>org.onap.appc</groupId>
191                         <artifactId>appc-dg-dependency-model</artifactId>
192                         <version>${project.version}</version>
193                 </dependency>
194                 <dependency>
195                         <groupId>com.fasterxml.jackson.dataformat</groupId>
196                         <artifactId>jackson-dataformat-yaml</artifactId>
197                         <version>${jackson-yaml-version}</version>
198                 </dependency>
199                 <dependency>
200                         <groupId>org.onap.appc</groupId>
201                         <artifactId>appc-dg-domain-model-lib</artifactId>
202                         <version>${project.version}</version>
203                 </dependency>
204                 <dependency>
205                         <groupId>com.fasterxml.jackson.core</groupId>
206                         <artifactId>jackson-annotations</artifactId>
207                         <version>${jackson-yaml-version}</version>
208                 </dependency>
209                 <dependency>
210                         <groupId>com.fasterxml.jackson.core</groupId>
211                         <artifactId>jackson-databind</artifactId>
212                         <version>2.8.11.3</version>
213                 </dependency>
214                 <dependency>
215                         <groupId>com.fasterxml.jackson.core</groupId>
216                         <artifactId>jackson-core</artifactId>
217                         <version>${jackson-yaml-version}</version>
218                 </dependency>
219
220         </dependencies>
221
222
223         <build>
224                 <plugins>
225
226                         <!-- ================================================== -->
227                         <!-- Set the JDK compiler version. -->
228                         <!-- ================================================== -->
229                         <plugin>
230                                 <groupId>org.apache.maven.plugins</groupId>
231                                 <artifactId>maven-compiler-plugin</artifactId>
232                                 <!-- <inherited>true</inherited> -->
233                                 <configuration>
234                                         <source>1.8</source>
235                                         <target>1.8</target>
236                                 </configuration>
237                         </plugin>
238
239                         <plugin>
240                                 <groupId>org.apache.felix</groupId>
241                                 <artifactId>maven-bundle-plugin</artifactId>
242                                 <extensions>true</extensions>
243                                 <configuration>
244                                         <instructions>
245                                                 <Bundle-SymbolicName>org.onap.appc.sdc.listener</Bundle-SymbolicName>
246                                                 <!--Bundle-Activator>org.onap.appc.sdc.listener.AppcSdcListenerActivator</Bundle-Activator -->
247                                                 <Export-Package>org.onap.appc.sdc.listener</Export-Package>
248                                                 <Import-Package>
249                                                         org.onap.appc.licmgr,
250                                                         org.onap.appc.adapter.messaging.*,
251                                                         com.att.eelf.*,
252                                                         *;resolution:=optional
253                                                 </Import-Package>
254                                                 <Embed-Dependency>
255                                                         sdc-distribution-client,snakeyaml,
256                                                         saClientLibrary,cambriaClient,saToolkit,
257                                                         functionaljava,httpcore,httpclient,gson,appc-dg-dependency-model,appc-dg-domain-model-lib,
258                                                         jackson-core,jackson-databind,jackson-annotations,jackson-dataformat-yaml;
259                                                         scope=compile|runtime;inline=false
260                                                 </Embed-Dependency>
261                                                 <Embed-Transitive>true</Embed-Transitive>
262                                         </instructions>
263                                 </configuration>
264                         </plugin>
265                 </plugins>
266         </build>
267 </project>