Upgrade to dmaap 1.1.9
[policy/parent.git] / integration / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2018 Ericsson. All rights reserved.
4    Modifications Copyright (C) 2018 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>2.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     </properties>
42
43     <distributionManagement>
44         <site>
45             <id>ecomp-site</id>
46             <url>dav:${onap.nexus.url}${sitePath}</url>
47         </site>
48     </distributionManagement>
49
50     <dependencyManagement>
51         <dependencies>
52             <!-- MariaDB -->
53             <dependency>
54                 <groupId>org.mariadb.jdbc</groupId>
55                 <artifactId>mariadb-java-client</artifactId>
56                 <version>2.2.6</version>
57             </dependency>
58
59             <!-- Swagger Jersey2 JAXRS -->
60             <dependency>
61                 <groupId>io.swagger</groupId>
62                 <artifactId>swagger-jersey2-jaxrs</artifactId>
63                 <version>1.5.19</version>
64             </dependency>
65
66             <!-- Encoder and decoders for various formats -->
67             <dependency>
68                 <groupId>commons-codec</groupId>
69                 <artifactId>commons-codec</artifactId>
70                 <version>1.11</version>
71             </dependency>
72
73             <dependency>
74                 <groupId>com.thoughtworks.xstream</groupId>
75                 <artifactId>xstream</artifactId>
76                 <version>1.4.10</version>
77             </dependency>
78
79             <!-- Persistence API -->
80             <dependency>
81                 <groupId>javax.persistence</groupId>
82                 <artifactId>persistence-api</artifactId>
83                 <version>1.0.2</version>
84             </dependency>
85
86             <!-- Java Servlet API -->
87             <dependency>
88                 <groupId>javax.servlet</groupId>
89                 <artifactId>javax.servlet-api</artifactId>
90                 <version>4.0.1</version>
91             </dependency>
92
93             <!-- HttpComponents Client -->
94             <dependency>
95                 <groupId>org.apache.httpcomponents</groupId>
96                 <artifactId>httpclient</artifactId>
97                 <version>4.5.5</version>
98             </dependency>
99
100             <!-- HttpComponents Core (blocking I/O) -->
101             <dependency>
102                 <groupId>org.apache.httpcomponents</groupId>
103                 <artifactId>httpcore</artifactId>
104                 <version>4.4.9</version>
105             </dependency>
106
107             <!-- JSON marshalling and unmarshalling -->
108             <dependency>
109                 <groupId>com.google.code.gson</groupId>
110                 <artifactId>gson</artifactId>
111                 <version>2.8.4</version>
112             </dependency>
113
114             <!-- Logging -->
115             <dependency>
116                 <groupId>org.slf4j</groupId>
117                 <artifactId>slf4j-api</artifactId>
118                 <version>1.7.25</version>
119             </dependency>
120             <dependency>
121                 <groupId>log4j</groupId>
122                 <artifactId>log4j</artifactId>
123                 <version>1.2.17</version>
124             </dependency>
125             <dependency>
126                 <groupId>ch.qos.logback</groupId>
127                 <artifactId>logback-core</artifactId>
128                 <version>${version.logback}</version>
129             </dependency>
130             <dependency>
131                 <groupId>ch.qos.logback</groupId>
132                 <artifactId>logback-classic</artifactId>
133                 <version>${version.logback}</version>
134             </dependency>
135             
136             <!-- Dmaap Client -->
137             <dependency>
138                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
139                 <artifactId>dmaapClient</artifactId>
140                 <version>${version.dmaap}</version>
141             </dependency>
142
143             <!-- AAF Client -->
144             <dependency>
145                 <groupId>org.onap.aaf.authz</groupId>
146                 <artifactId>aaf-cadi-aaf</artifactId>
147                 <version>2.1.2</version>
148             </dependency>
149
150             <!-- Client library for Cambria event routing API -->
151             <dependency>
152                 <groupId>com.att.nsa</groupId>
153                 <artifactId>cambriaClient</artifactId>
154                 <version>1.2.1-oss</version>
155             </dependency>
156             <dependency>
157                 <groupId>com.att.nsa</groupId>
158                 <artifactId>saClientLibrary</artifactId>
159                 <version>1.3.0-oss</version>
160             </dependency>
161
162             <!-- Commons CLI for command line parsing -->
163             <dependency>
164                 <groupId>commons-cli</groupId>
165                 <artifactId>commons-cli</artifactId>
166                 <version>1.4</version>
167             </dependency>
168
169             <!-- Web Sockets -->
170             <dependency>
171                 <groupId>org.java-websocket</groupId>
172                 <artifactId>Java-WebSocket</artifactId>
173                 <version>1.3.8</version>
174             </dependency>
175
176             <!-- Test dependencies -->
177
178             <!-- In memory Database Engine -->
179             <dependency>
180                 <groupId>com.h2database</groupId>
181                 <artifactId>h2</artifactId>
182                 <version>1.4.197</version>
183                 <scope>test</scope>
184             </dependency>
185
186             <!-- JUNIT -->
187             <dependency>
188                 <groupId>junit</groupId>
189                 <artifactId>junit</artifactId>
190                 <version>4.12</version>
191                 <scope>test</scope>
192             </dependency>
193
194             <!-- Mock libraries -->
195             <dependency>
196                 <groupId>org.mockito</groupId>
197                 <artifactId>mockito-all</artifactId>
198                 <version>1.10.19</version>
199                 <scope>test</scope>
200             </dependency>
201             <dependency>
202                 <groupId>org.powermock</groupId>
203                 <artifactId>powermock-core</artifactId>
204                 <version>${version.powermock}</version>
205                 <scope>test</scope>
206             </dependency>
207             <dependency>
208                 <groupId>org.powermock</groupId>
209                 <artifactId>powermock-api-mockito</artifactId>
210                 <version>${version.powermock}</version>
211                 <scope>test</scope>
212             </dependency>
213             <dependency>
214                 <groupId>org.powermock</groupId>
215                 <artifactId>powermock-module-junit4</artifactId>
216                 <version>${version.powermock}</version>
217                 <scope>test</scope>
218             </dependency>
219             <dependency>
220                 <groupId>com.openpojo</groupId>
221                 <artifactId>openpojo</artifactId>
222                 <version>0.8.10</version>
223                 <scope>test</scope>
224             </dependency>
225         </dependencies>
226
227     </dependencyManagement>
228
229
230     <scm>
231         <connection>scm:git:ssh://git.onap.org:29418/${project.groupId}</connection>
232         <developerConnection>scm:git:ssh://git.onap.org:29418/${project.groupId}</developerConnection>
233         <tag>HEAD</tag>
234         <url>https://wiki.onap.org/display/DW/Integration+Project</url>
235     </scm>
236
237     <build>
238         <pluginManagement>
239             <plugins>
240                 <plugin>
241                     <groupId>org.codehaus.mojo</groupId>
242                     <artifactId>versions-maven-plugin</artifactId>
243                     <version>2.5</version>
244                 </plugin>
245                 <plugin>
246                     <groupId>org.apache.maven.plugins</groupId>
247                     <artifactId>maven-dependency-plugin</artifactId>
248                     <version>3.1.0</version>
249                 </plugin>
250                 <plugin>
251                     <groupId>org.apache.maven.plugins</groupId>
252                     <artifactId>maven-reactor-plugin</artifactId>
253                     <version>1.1</version>
254                 </plugin>
255                 <plugin>
256                     <groupId>org.apache.maven.plugins</groupId>
257                     <artifactId>maven-eclipse-plugin</artifactId>
258                     <version>2.10</version>
259                 </plugin>
260                 <plugin>
261                     <groupId>org.apache.maven.plugins</groupId>
262                     <artifactId>maven-install-plugin</artifactId>
263                     <version>2.5.2</version>
264                 </plugin>
265                 <plugin>
266                     <groupId>org.apache.maven.plugins</groupId>
267                     <artifactId>maven-resources-plugin</artifactId>
268                     <version>3.1.0</version>
269                 </plugin>
270                 <plugin>
271                     <groupId>org.apache.maven.plugins</groupId>
272                     <artifactId>maven-source-plugin</artifactId>
273                     <version>3.0.1</version>
274                 </plugin>
275                 <plugin>
276                     <groupId>org.apache.maven.plugins</groupId>
277                     <artifactId>maven-release-plugin</artifactId>
278                     <version>2.5.3</version>
279                 </plugin>
280                 <plugin>
281                     <groupId>org.apache.maven.plugins</groupId>
282                     <artifactId>maven-assembly-plugin</artifactId>
283                     <version>3.1.0</version>
284                 </plugin>
285                 <plugin>
286                     <groupId>org.apache.maven.plugins</groupId>
287                     <artifactId>maven-jar-plugin</artifactId>
288                     <version>3.1.0</version>
289                 </plugin>
290                 <plugin>
291                     <groupId>org.apache.maven.plugins</groupId>
292                     <artifactId>maven-javadoc-plugin</artifactId>
293                     <version>3.0.0</version>
294                 </plugin>
295                 <plugin>
296                     <groupId>org.apache.maven.plugins</groupId>
297                     <artifactId>maven-shade-plugin</artifactId>
298                     <version>3.1.1</version>
299                 </plugin>
300                 <plugin>
301                     <groupId>org.apache.maven.plugins</groupId>
302                     <artifactId>maven-archetype-plugin</artifactId>
303                     <version>3.0.1</version>
304                 </plugin>
305                 <plugin>
306                     <groupId>org.apache.maven.archetype</groupId>
307                     <artifactId>archetype-packaging</artifactId>
308                     <version>3.0.1</version>
309                 </plugin>
310                 <plugin>
311                     <groupId>com.coderplus.maven.plugins</groupId>
312                     <artifactId>copy-rename-maven-plugin</artifactId>
313                     <version>1.0.1</version>
314                 </plugin>
315                 <plugin>
316                     <groupId>org.apache.maven.plugins</groupId>
317                     <artifactId>maven-compiler-plugin</artifactId>
318                     <version>3.7.0</version>
319                     <configuration>
320                         <encoding>${project.build.sourceEncoding}</encoding>
321                         <source>${java.version}</source>
322                         <target>${java.version}</target>
323                     </configuration>
324                 </plugin>
325                 <plugin>
326                     <groupId>org.codehaus.mojo</groupId>
327                     <artifactId>exec-maven-plugin</artifactId>
328                     <version>1.6.0</version>
329                 </plugin>
330                 <plugin>
331                     <groupId>org.apache.maven.plugins</groupId>
332                     <artifactId>maven-war-plugin</artifactId>
333                     <version>2.6</version>
334                 </plugin>
335             </plugins>
336         </pluginManagement>
337
338         <plugins>
339             <plugin>
340                 <groupId>org.apache.maven.plugins</groupId>
341                 <artifactId>maven-compiler-plugin</artifactId>
342                 <configuration>
343                     <encoding>${project.build.sourceEncoding}</encoding>
344                     <source>${java.version}</source>
345                     <target>${java.version}</target>
346                 </configuration>
347             </plugin>
348         </plugins>
349     </build>
350
351 </project>