Review ccsdk dependencies to integrate cds actor
[policy/parent.git] / integration / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2018 Ericsson. All rights reserved.
4    Modifications Copyright (C) 2018-2019 AT&T. All rights reserved.
5   ================================================================================
6   Licensed under the Apache License, Version 2.0 (the "License");
7   you may not use this file except in compliance with the License.
8   You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12   Unless required by applicable law or agreed to in writing, software
13   distributed under the License is distributed on an "AS IS" BASIS,
14   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   See the License for the specific language governing permissions and
16   limitations under the License.
17
18   SPDX-License-Identifier: Apache-2.0
19   ============LICENSE_END=========================================================
20 -->
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.policy.parent</groupId>
26         <artifactId>policy-parent</artifactId>
27         <version>3.1.0-SNAPSHOT</version>
28     </parent>
29     <artifactId>integration</artifactId>
30     <packaging>pom</packaging>
31     <name>Policy Integration POM</name>
32     <description>Policy Integration POM</description>
33
34     <properties>
35         <java.version>1.8</java.version>
36         <maven.compiler.source>1.8</maven.compiler.source>
37         <maven.compiler.target>1.8</maven.compiler.target>
38         <version.logback>1.2.3</version.logback>
39         <version.dmaap>1.1.9</version.dmaap>
40         <version.powermock>1.7.4</version.powermock>
41         <version.eclipselink>2.7.0</version.eclipselink>
42         <version.jackson>2.10.0.pr3</version.jackson>
43         <version.ccsdk>0.6.3</version.ccsdk>
44     </properties>
45
46     <distributionManagement>
47         <site>
48             <id>ecomp-site</id>
49             <url>dav:${onap.nexus.url}${sitePath}</url>
50         </site>
51     </distributionManagement>
52
53     <dependencyManagement>
54         <dependencies>
55             <!-- Jackson -->
56             <dependency>
57                 <groupId>com.fasterxml.jackson.core</groupId>
58                 <artifactId>jackson-annotations</artifactId>
59                 <version>${version.jackson}</version>
60             </dependency>
61             <dependency>
62                 <groupId>com.fasterxml.jackson.core</groupId>
63                 <artifactId>jackson-core</artifactId>
64                 <version>${version.jackson}</version>
65             </dependency>
66             <dependency>
67                 <groupId>com.fasterxml.jackson.core</groupId>
68                 <artifactId>jackson-databind</artifactId>
69                 <version>${version.jackson}</version>
70             </dependency>
71             <dependency>
72                 <groupId>com.fasterxml.jackson.dataformat</groupId>
73                 <artifactId>jackson-dataformat-yaml</artifactId>
74                 <version>${version.jackson}</version>
75             </dependency>
76             <dependency>
77                 <groupId>com.fasterxml.jackson.jaxrs</groupId>
78                 <artifactId>jackson-jaxrs-base</artifactId>
79                 <version>${version.jackson}</version>
80             </dependency>
81             <dependency>
82                 <groupId>com.fasterxml.jackson.jaxrs</groupId>
83                 <artifactId>jackson-jaxrs-json-provider</artifactId>
84                 <version>${version.jackson}</version>
85             </dependency>
86
87             <!-- MariaDB -->
88             <dependency>
89                 <groupId>org.mariadb.jdbc</groupId>
90                 <artifactId>mariadb-java-client</artifactId>
91                 <version>2.2.6</version>
92             </dependency>
93
94             <!-- Swagger Jersey2 JAXRS -->
95             <dependency>
96                 <groupId>io.swagger</groupId>
97                 <artifactId>swagger-jersey2-jaxrs</artifactId>
98                 <version>1.5.19</version>
99             </dependency>
100
101             <!-- Encoder and decoders for various formats -->
102             <dependency>
103                 <groupId>commons-codec</groupId>
104                 <artifactId>commons-codec</artifactId>
105                 <version>1.11</version>
106             </dependency>
107
108             <dependency>
109                 <groupId>com.thoughtworks.xstream</groupId>
110                 <artifactId>xstream</artifactId>
111                 <version>1.4.11.1</version>
112             </dependency>
113
114             <!-- Eclipse Persistence API -->
115             <!-- NOTE: use this instead of persistence-api -->
116             <dependency>
117                 <groupId>org.eclipse.persistence</groupId>
118                 <artifactId>javax.persistence</artifactId>
119                 <version>2.1.0</version>
120             </dependency>
121
122             <!-- Eclipse JPA API -->
123             <dependency>
124                 <groupId>org.eclipse.persistence</groupId>
125                 <artifactId>org.eclipse.persistence.jpa</artifactId>
126                 <version>${version.eclipselink}</version>
127             </dependency>
128
129             <!-- EclipseLink API -->
130             <dependency>
131                 <groupId>org.eclipse.persistence</groupId>
132                 <artifactId>eclipselink</artifactId>
133                 <version>${version.eclipselink}</version>
134             </dependency>
135
136             <!-- Java Servlet API -->
137             <dependency>
138                 <groupId>javax.servlet</groupId>
139                 <artifactId>javax.servlet-api</artifactId>
140                 <version>4.0.1</version>
141             </dependency>
142
143             <!-- HttpComponents Client -->
144             <dependency>
145                 <groupId>org.apache.httpcomponents</groupId>
146                 <artifactId>httpclient</artifactId>
147                 <version>4.5.9</version>
148             </dependency>
149
150             <!-- HttpComponents Core (blocking I/O) -->
151             <dependency>
152                 <groupId>org.apache.httpcomponents</groupId>
153                 <artifactId>httpcore</artifactId>
154                 <version>4.4.9</version>
155             </dependency>
156
157             <!-- JSON marshalling and unmarshalling -->
158             <dependency>
159                 <groupId>com.google.code.gson</groupId>
160                 <artifactId>gson</artifactId>
161                 <version>2.8.4</version>
162             </dependency>
163
164             <!-- Lombok -->
165             <dependency>
166                 <groupId>org.projectlombok</groupId>
167                 <artifactId>lombok</artifactId>
168                 <version>1.18.4</version>
169             </dependency>
170
171             <!-- Logging -->
172             <dependency>
173                 <groupId>org.slf4j</groupId>
174                 <artifactId>slf4j-api</artifactId>
175                 <version>1.7.25</version>
176             </dependency>
177             <dependency>
178                 <groupId>log4j</groupId>
179                 <artifactId>log4j</artifactId>
180                 <version>1.2.17</version>
181             </dependency>
182             <dependency>
183                 <groupId>ch.qos.logback</groupId>
184                 <artifactId>logback-core</artifactId>
185                 <version>${version.logback}</version>
186             </dependency>
187             <dependency>
188                 <groupId>ch.qos.logback</groupId>
189                 <artifactId>logback-classic</artifactId>
190                 <version>${version.logback}</version>
191             </dependency>
192             
193             <!-- Dmaap Client -->
194             <dependency>
195                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
196                 <artifactId>dmaapClient</artifactId>
197                 <version>${version.dmaap}</version>
198             </dependency>
199
200             <!-- AAF Client -->
201             <dependency>
202                 <groupId>org.onap.aaf.authz</groupId>
203                 <artifactId>aaf-cadi-aaf</artifactId>
204                 <version>2.1.2</version>
205             </dependency>
206
207             <!-- Client library for Cambria event routing API -->
208             <dependency>
209                 <groupId>com.att.nsa</groupId>
210                 <artifactId>cambriaClient</artifactId>
211                 <version>1.2.1-oss</version>
212             </dependency>
213             <dependency>
214                 <groupId>com.att.nsa</groupId>
215                 <artifactId>saClientLibrary</artifactId>
216                 <version>1.3.0-oss</version>
217             </dependency>
218
219             <!-- Commons CLI for command line parsing -->
220             <dependency>
221                 <groupId>commons-cli</groupId>
222                 <artifactId>commons-cli</artifactId>
223                 <version>1.4</version>
224             </dependency>
225
226             <!-- Web Sockets -->
227             <dependency>
228                 <groupId>org.java-websocket</groupId>
229                 <artifactId>Java-WebSocket</artifactId>
230                 <version>1.3.8</version>
231             </dependency>
232
233             <!-- SnakeYAML -->
234             <dependency>
235                 <groupId>org.yaml</groupId>
236                 <artifactId>snakeyaml</artifactId>
237                 <version>1.24</version>
238             </dependency>
239
240             <!-- Common Controller SDK -->
241             <dependency>
242                 <groupId>org.onap.ccsdk.cds.components</groupId>
243                 <artifactId>proto-definition</artifactId>
244                 <version>${version.ccsdk}</version>
245             </dependency>
246
247             <!-- Test dependencies -->
248
249             <!-- In memory Database Engine -->
250             <dependency>
251                 <groupId>com.h2database</groupId>
252                 <artifactId>h2</artifactId>
253                 <version>1.4.197</version>
254                 <scope>test</scope>
255             </dependency>
256
257             <!-- JUNIT -->
258             <dependency>
259                 <groupId>junit</groupId>
260                 <artifactId>junit</artifactId>
261                 <version>4.12</version>
262                 <scope>test</scope>
263             </dependency>
264
265             <!-- Cucumber Tests -->
266             <dependency>
267                 <groupId>io.cucumber</groupId>
268                 <artifactId>cucumber-java</artifactId>
269                 <version>4.2.0</version>
270                 <scope>test</scope>
271             </dependency>
272             <dependency>
273                 <groupId>io.cucumber</groupId>
274                 <artifactId>cucumber-junit</artifactId>
275                 <version>4.2.0</version>
276                 <scope>test</scope>
277             </dependency>
278
279             <!-- Exception testing -->
280             <dependency>
281                 <groupId>org.assertj</groupId>
282                 <artifactId>assertj-core</artifactId>
283                 <version>3.11.1</version>
284                 <scope>test</scope>
285             </dependency>
286
287             <!-- Mock libraries -->
288             <dependency>
289                 <groupId>org.mockito</groupId>
290                 <artifactId>mockito-all</artifactId>
291                 <version>1.10.19</version>
292                 <scope>test</scope>
293             </dependency>
294             <dependency>
295                 <groupId>org.powermock</groupId>
296                 <artifactId>powermock-core</artifactId>
297                 <version>${version.powermock}</version>
298                 <scope>test</scope>
299             </dependency>
300             <dependency>
301                 <groupId>org.powermock</groupId>
302                 <artifactId>powermock-api-mockito</artifactId>
303                 <version>${version.powermock}</version>
304                 <scope>test</scope>
305             </dependency>
306             <dependency>
307                 <groupId>org.powermock</groupId>
308                 <artifactId>powermock-module-junit4</artifactId>
309                 <version>${version.powermock}</version>
310                 <scope>test</scope>
311             </dependency>
312             <dependency>
313                 <groupId>com.openpojo</groupId>
314                 <artifactId>openpojo</artifactId>
315                 <version>0.8.10</version>
316                 <scope>test</scope>
317             </dependency>
318         </dependencies>
319
320     </dependencyManagement>
321
322
323     <scm>
324         <connection>scm:git:ssh://git.onap.org:29418/${project.groupId}</connection>
325         <developerConnection>scm:git:ssh://git.onap.org:29418/${project.groupId}</developerConnection>
326         <tag>HEAD</tag>
327         <url>https://wiki.onap.org/display/DW/Integration+Project</url>
328     </scm>
329
330     <build>
331         <pluginManagement>
332             <plugins>
333                 <plugin>
334                     <groupId>org.codehaus.mojo</groupId>
335                     <artifactId>versions-maven-plugin</artifactId>
336                     <version>2.5</version>
337                 </plugin>
338                 <plugin>
339                     <groupId>org.apache.maven.plugins</groupId>
340                     <artifactId>maven-dependency-plugin</artifactId>
341                     <version>3.1.0</version>
342                 </plugin>
343                 <plugin>
344                     <groupId>org.apache.maven.plugins</groupId>
345                     <artifactId>maven-reactor-plugin</artifactId>
346                     <version>1.1</version>
347                 </plugin>
348                 <plugin>
349                     <groupId>org.apache.maven.plugins</groupId>
350                     <artifactId>maven-eclipse-plugin</artifactId>
351                     <version>2.10</version>
352                 </plugin>
353                 <plugin>
354                     <groupId>org.apache.maven.plugins</groupId>
355                     <artifactId>maven-install-plugin</artifactId>
356                     <version>2.5.2</version>
357                 </plugin>
358                 <plugin>
359                     <groupId>org.apache.maven.plugins</groupId>
360                     <artifactId>maven-resources-plugin</artifactId>
361                     <version>3.1.0</version>
362                 </plugin>
363                 <plugin>
364                     <groupId>org.apache.maven.plugins</groupId>
365                     <artifactId>maven-source-plugin</artifactId>
366                     <version>3.0.1</version>
367                 </plugin>
368                 <plugin>
369                     <groupId>org.apache.maven.plugins</groupId>
370                     <artifactId>maven-release-plugin</artifactId>
371                     <version>2.5.3</version>
372                 </plugin>
373                 <plugin>
374                     <groupId>org.apache.maven.plugins</groupId>
375                     <artifactId>maven-assembly-plugin</artifactId>
376                     <version>3.1.0</version>
377                 </plugin>
378                 <plugin>
379                     <groupId>org.apache.maven.plugins</groupId>
380                     <artifactId>maven-jar-plugin</artifactId>
381                     <version>3.1.0</version>
382                 </plugin>
383                 <plugin>
384                     <groupId>org.apache.maven.plugins</groupId>
385                     <artifactId>maven-javadoc-plugin</artifactId>
386                     <version>3.0.0</version>
387                 </plugin>
388                 <plugin>
389                     <groupId>org.apache.maven.plugins</groupId>
390                     <artifactId>maven-shade-plugin</artifactId>
391                     <version>3.1.1</version>
392                 </plugin>
393                 <plugin>
394                     <groupId>org.apache.maven.plugins</groupId>
395                     <artifactId>maven-archetype-plugin</artifactId>
396                     <version>3.0.1</version>
397                 </plugin>
398                 <plugin>
399                     <groupId>org.apache.maven.archetype</groupId>
400                     <artifactId>archetype-packaging</artifactId>
401                     <version>3.0.1</version>
402                 </plugin>
403                 <plugin>
404                     <groupId>com.coderplus.maven.plugins</groupId>
405                     <artifactId>copy-rename-maven-plugin</artifactId>
406                     <version>1.0.1</version>
407                 </plugin>
408                 <plugin>
409                     <groupId>org.apache.maven.plugins</groupId>
410                     <artifactId>maven-compiler-plugin</artifactId>
411                     <version>3.7.0</version>
412                     <configuration>
413                         <encoding>${project.build.sourceEncoding}</encoding>
414                         <source>${java.version}</source>
415                         <target>${java.version}</target>
416                     </configuration>
417                 </plugin>
418                 <plugin>
419                     <groupId>org.codehaus.mojo</groupId>
420                     <artifactId>exec-maven-plugin</artifactId>
421                     <version>1.6.0</version>
422                 </plugin>
423                 <plugin>
424                     <groupId>org.apache.maven.plugins</groupId>
425                     <artifactId>maven-war-plugin</artifactId>
426                     <version>2.6</version>
427                 </plugin>
428             </plugins>
429         </pluginManagement>
430
431         <plugins>
432             <plugin>
433                 <groupId>org.apache.maven.plugins</groupId>
434                 <artifactId>maven-compiler-plugin</artifactId>
435                 <configuration>
436                     <encoding>${project.build.sourceEncoding}</encoding>
437                     <source>${java.version}</source>
438                     <target>${java.version}</target>
439                 </configuration>
440             </plugin>
441         </plugins>
442     </build>
443
444 </project>