Change sdc client version
[appc.git] / appc-sdc-listener / appc-sdc-listener-bundle / pom.xml
1 <!--
2 ============LICENSE_START=======================================================
3 ONAP : APPC
4 ================================================================================
5 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6 ================================================================================
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
25
26         <parent>
27                 <artifactId>appc-sdc-listener</artifactId>
28                 <groupId>org.onap.appc</groupId>
29                 <version>1.3.0-SNAPSHOT</version>
30         </parent>
31
32         <properties>
33                 <jackson-yaml-version>2.8.1</jackson-yaml-version>
34                 <snakeyaml.version>1.15</snakeyaml.version>
35         </properties>
36
37         <artifactId>appc-sdc-listener-bundle</artifactId>
38         <packaging>bundle</packaging>
39
40         <dependencies>
41
42                 <dependency>
43                         <groupId>equinoxSDK381</groupId>
44                         <artifactId>org.eclipse.osgi</artifactId>
45                 </dependency>
46
47                 <dependency>
48                         <groupId>org.json</groupId>
49                         <artifactId>json</artifactId>
50                         <scope>compile</scope>
51                 </dependency>
52
53                 <dependency>
54                         <groupId>org.mockito</groupId>
55                         <artifactId>mockito-core</artifactId>
56                         <scope>test</scope>
57                 </dependency>
58                 <dependency>
59                         <groupId>org.powermock</groupId>
60                         <artifactId>powermock-module-junit4</artifactId>
61                         <version>1.6.2</version>
62                         <scope>test</scope>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.powermock</groupId>
66                         <artifactId>powermock-api-mockito</artifactId>
67                         <scope>test</scope>
68                 </dependency>
69
70                 <dependency>
71                         <groupId>org.onap.sdc.sdc-distribution-client</groupId>
72                         <artifactId>sdc-distribution-client</artifactId>
73                         <version>${sdc-client.version}</version>
74                 </dependency>
75
76                 <dependency>
77                         <groupId>org.onap.appc</groupId>
78                         <artifactId>appc-message-adapter-api</artifactId>
79                         <version>${project.version}</version>
80                 </dependency>
81
82                 <dependency>
83                         <groupId>org.onap.appc</groupId>
84                         <artifactId>appc-message-adapter-factory</artifactId>
85                         <version>${project.version}</version>
86                 </dependency>
87
88                 <dependency>
89                         <groupId>org.yaml</groupId>
90                         <artifactId>snakeyaml</artifactId>
91                         <version>${snakeyaml.version}</version>
92                 </dependency>
93
94                 <dependency>
95                         <groupId>org.onap.appc</groupId>
96                         <artifactId>appc-common</artifactId>
97                         <version>${project.version}</version>
98                 </dependency>
99
100
101                 <dependency>
102                         <groupId>junit</groupId>
103                         <artifactId>junit</artifactId>
104                         <scope>compile</scope>
105                 </dependency>
106
107                 <dependency>
108                         <groupId>com.att.eelf</groupId>
109                         <artifactId>eelf-core</artifactId>
110                 </dependency>
111                 <dependency>
112                         <groupId>ch.qos.logback</groupId>
113                         <artifactId>logback-core</artifactId>
114                 </dependency>
115                 <dependency>
116                         <groupId>ch.qos.logback</groupId>
117                         <artifactId>logback-classic</artifactId>
118                 </dependency>
119                 <dependency>
120                         <groupId>org.functionaljava</groupId>
121                         <artifactId>functionaljava</artifactId>
122                         <version>4.2</version>
123                 </dependency>
124                 <dependency>
125                         <groupId>org.apache.httpcomponents</groupId>
126                         <artifactId>httpcore</artifactId>
127                         <version>4.4.1</version>
128                 </dependency>
129                 <dependency>
130                         <groupId>org.apache.httpcomponents</groupId>
131                         <artifactId>httpclient</artifactId>
132                         <version>4.5.3</version>
133                 </dependency>
134
135                 <dependency>
136                         <groupId>org.onap.appc</groupId>
137                         <artifactId>appc-license-manager-api</artifactId>
138                         <!-- <version>${project.version}</version> -->
139                         <version>${project.version}</version>
140                 </dependency>
141
142                 <dependency>
143                         <groupId>com.google.code.gson</groupId>
144                         <artifactId>gson</artifactId>
145                 </dependency>
146
147                 <dependency>
148                         <groupId>org.apache.velocity</groupId>
149                         <artifactId>velocity</artifactId>
150                         <version>1.7</version>
151                         <exclusions>
152                              <exclusion>
153                                   <artifactId>commons-collections</artifactId>
154                                   <groupId>commons-collections</groupId>
155                              </exclusion>
156                         </exclusions>
157                  </dependency>
158                  <dependency>
159                      <groupId>commons-collections</groupId>
160                      <artifactId>commons-collections</artifactId>
161                      <version>3.2.2</version>
162                  </dependency>
163                  <dependency>
164                         <groupId>org.opendaylight.yangtools</groupId>
165                         <artifactId>yang-parser-impl</artifactId>
166                         <version>${odl.yangtools.version}</version>
167                 </dependency>
168
169                 <dependency>
170                         <groupId>org.opendaylight.mdsal.model</groupId>
171                         <artifactId>ietf-inet-types</artifactId>
172                         <version>${odl.ietf-inet-types.version}</version>
173                 </dependency>
174                 <dependency>
175                         <groupId>org.opendaylight.mdsal.model</groupId>
176                         <artifactId>ietf-yang-types</artifactId>
177                         <version>${odl.ietf-yang-types.version}</version>
178                 </dependency>
179
180                 <dependency>
181                         <groupId>org.onap.appc</groupId>
182                         <artifactId>appc-dg-dependency-model</artifactId>
183                         <version>${project.version}</version>
184                 </dependency>
185                 <dependency>
186                         <groupId>com.fasterxml.jackson.dataformat</groupId>
187                         <artifactId>jackson-dataformat-yaml</artifactId>
188                         <version>${jackson-yaml-version}</version>
189                 </dependency>
190                 <dependency>
191                         <groupId>org.onap.appc</groupId>
192                         <artifactId>appc-dg-domain-model-lib</artifactId>
193                         <version>${project.version}</version>
194                 </dependency>
195                 <dependency>
196                         <groupId>com.fasterxml.jackson.core</groupId>
197                         <artifactId>jackson-annotations</artifactId>
198                         <version>${jackson-yaml-version}</version>
199                 </dependency>
200                 <dependency>
201                         <groupId>com.fasterxml.jackson.core</groupId>
202                         <artifactId>jackson-databind</artifactId>
203                         <version>${jackson-yaml-version}</version>
204                 </dependency>
205                 <dependency>
206                         <groupId>com.fasterxml.jackson.core</groupId>
207                         <artifactId>jackson-core</artifactId>
208                         <version>${jackson-yaml-version}</version>
209                 </dependency>
210
211                 <dependency>
212                         <groupId>org.mockito</groupId>
213                         <artifactId>mockito-core</artifactId>
214                 </dependency>
215
216
217
218         </dependencies>
219
220
221         <build>
222                 <plugins>
223
224                         <!-- ================================================== -->
225                         <!-- Set the JDK compiler version. -->
226                         <!-- ================================================== -->
227                         <plugin>
228                                 <groupId>org.apache.maven.plugins</groupId>
229                                 <artifactId>maven-compiler-plugin</artifactId>
230                                 <!-- <inherited>true</inherited> -->
231                                 <configuration>
232                                         <source>1.8</source>
233                                         <target>1.8</target>
234                                 </configuration>
235                         </plugin>
236
237                         <plugin>
238                                 <groupId>org.apache.felix</groupId>
239                                 <artifactId>maven-bundle-plugin</artifactId>
240                                 <extensions>true</extensions>
241                                 <configuration>
242                                         <instructions>
243                                                 <Bundle-SymbolicName>org.onap.appc.sdc.listener</Bundle-SymbolicName>
244                                                 <!--Bundle-Activator>org.onap.appc.sdc.listener.AppcSdcListenerActivator</Bundle-Activator -->
245                                                 <Export-Package>org.onap.appc.sdc.listener</Export-Package>
246                                                 <Import-Package>
247                                                         org.onap.appc.licmgr,
248                                                         org.onap.appc.adapter.messaging.*,
249                                                         com.att.eelf.*,
250                                                         *;resolution:=optional
251                                                 </Import-Package>
252                                                 <Embed-Dependency>
253                                                         sdc-distribution-client,snakeyaml,
254                                                         saClientLibrary,cambriaClient,saToolkit,
255                                                         functionaljava,httpcore,httpclient,gson,appc-dg-dependency-model,appc-dg-domain-model-lib,
256                                                         jackson-core,jackson-databind,jackson-annotations,jackson-dataformat-yaml;
257                                                         scope=compile|runtime;inline=false
258                                                 </Embed-Dependency>
259                                                 <Embed-Transitive>true</Embed-Transitive>
260                                         </instructions>
261                                 </configuration>
262                         </plugin>
263                 </plugins>
264         </build>
265 </project>