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