blob: 4b4d3698ef022a6b016521a164ebd7885cec7977 [file] [log] [blame]
wasala961af3e2018-03-27 13:02:10 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
wasala9292dd22018-03-28 19:04:20 +02004 ~ PNF-REGISTRATION-HANDLER
wasala961af3e2018-03-27 13:02:10 +02005 ~ ================================================================================
6 ~ Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
7 ~ ================================================================================
8 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 ~ ============LICENSE_END=========================================================
20 -->
wasalaec0cf092018-03-21 14:19:43 +010021<project xmlns="http://maven.apache.org/POM/4.0.0"
22 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
wasala961af3e2018-03-27 13:02:10 +020024
wasalaec0cf092018-03-21 14:19:43 +010025 <modelVersion>4.0.0</modelVersion>
26 <parent>
27 <groupId>org.onap.oparent</groupId>
28 <artifactId>oparent</artifactId>
29 <version>0.1.1</version>
30 <relativePath/>
31 </parent>
32 <groupId>org.onap.dcaegen2.services</groupId>
Lusheng Ji44fb1712018-03-21 16:42:36 -040033 <artifactId>prh</artifactId>
wasalaec0cf092018-03-21 14:19:43 +010034 <version>1.0.0-SNAPSHOT</version>
35 <name>pnf-registration-handler</name>
36 <description>pnf-registration-handler</description>
wasalab80bcb82018-03-26 15:48:46 +020037 <packaging>pom</packaging>
38
39 <licenses>
40 <license>
41 <name>The Apache Software License, Version 2.0</name>
42 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
43 </license>
44 </licenses>
45
46
wasalaec0cf092018-03-21 14:19:43 +010047 <properties>
48 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
wasalab80bcb82018-03-26 15:48:46 +020049 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
50
wasala961af3e2018-03-27 13:02:10 +020051 <!-- JAVA VERSION-->
wasalaec0cf092018-03-21 14:19:43 +010052 <java.version>8</java.version>
53 <compiler.plugin.version>3.7.0</compiler.plugin.version>
wasalab0ef0452018-04-16 09:52:34 +020054 <tomcat.version>8.5.28</tomcat.version>
Lusheng Jiee36c362018-05-02 15:55:41 -040055 <docker.maven.version>1.0.0</docker.maven.version>
wasala44ce56c2018-05-08 13:48:44 +020056 <resource.maven.plugin.version>3.1.0</resource.maven.plugin.version>
wasala961af3e2018-03-27 13:02:10 +020057 <!-- DEVELOPMENT SETTINGS -->
58 <immutable.version>2.5.6</immutable.version>
59
60 <!-- LOGGING SETTINGS -->
61 <slf4j.version>1.7.25</slf4j.version>
62 <logback.version>1.2.3</logback.version>
63
64 <!--TEST SETTINGS -->
65 <surefire.redirectTestOutputToFile>true</surefire.redirectTestOutputToFile>
wasalaec0cf092018-03-21 14:19:43 +010066 <junit.version>4.12</junit.version>
67 <junit.jupiter.version>5.1.0</junit.jupiter.version>
68 <junit.vintage.version>5.1.0</junit.vintage.version>
69 <junit.platform.version>1.1.0</junit.platform.version>
wasala961af3e2018-03-27 13:02:10 +020070
wasalaec0cf092018-03-21 14:19:43 +010071 <!--PLUGIN SETTINGS -->
wasalaec0cf092018-03-21 14:19:43 +010072 <nexusproxy>https://nexus.onap.org</nexusproxy>
73 <snapshots.path>content/repositories/snapshots/</snapshots.path>
74 <releases.path>content/repositories/releases/</releases.path>
75 <site.path>
76 content/sites/site/org/onap/dcaegen2/services/prh/${project.artifactId}/${project.version}
77 </site.path>
78 </properties>
wasalab80bcb82018-03-26 15:48:46 +020079
wasalaec0cf092018-03-21 14:19:43 +010080 <pluginRepositories>
81 <!-- Black Duck plugin dependencies -->
82 <pluginRepository>
83 <id>JCenter</id>
84 <name>JCenter Repository</name>
85 <url>http://jcenter.bintray.com</url>
86 </pluginRepository>
87 <pluginRepository>
88 <id>Restlet</id>
89 <name>Restlet Repository</name>
90 <url>http://maven.restlet.com</url>
91 </pluginRepository>
92 </pluginRepositories>
wasalab80bcb82018-03-26 15:48:46 +020093
wasalaec0cf092018-03-21 14:19:43 +010094 <repositories>
95 <repository>
96 <id>external-repository</id>
97 <url>https://oss.sonatype.org/content/repositories</url>
98 </repository>
99 </repositories>
wasalab80bcb82018-03-26 15:48:46 +0200100
wasalaec0cf092018-03-21 14:19:43 +0100101 <build>
wasalab80bcb82018-03-26 15:48:46 +0200102
103 <extensions>
104 <extension>
105 <groupId>org.apache.maven.wagon</groupId>
106 <artifactId>wagon-webdav-jackrabbit</artifactId>
107 <version>3.0.0</version>
108 </extension>
109 </extensions>
110
wasalaec0cf092018-03-21 14:19:43 +0100111 <pluginManagement>
112 <plugins>
wasalab80bcb82018-03-26 15:48:46 +0200113
114 <!-- COMPILER PLUGIN -->
wasalaec0cf092018-03-21 14:19:43 +0100115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-compiler-plugin</artifactId>
118 <version>${compiler.plugin.version}</version>
119 <configuration>
120 <source>${java.version}</source>
121 <target>${java.version}</target>
122 <showWarnings>true</showWarnings>
123 <showDeprecation>true</showDeprecation>
124 </configuration>
125 </plugin>
wasalab80bcb82018-03-26 15:48:46 +0200126
127 <!-- MAVEN SOURCE PLUGIN -->
wasalaec0cf092018-03-21 14:19:43 +0100128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
wasalab80bcb82018-03-26 15:48:46 +0200130 <artifactId>maven-source-plugin</artifactId>
131 <version>3.0.1</version>
132 <configuration>
133 <excludeResources>true</excludeResources>
134 </configuration>
wasalaec0cf092018-03-21 14:19:43 +0100135 <executions>
136 <execution>
wasalab80bcb82018-03-26 15:48:46 +0200137 <id>attach-sources</id>
138 <phase>verify</phase>
wasalaec0cf092018-03-21 14:19:43 +0100139 <goals>
wasalab80bcb82018-03-26 15:48:46 +0200140 <goal>jar-no-fork</goal>
wasalaec0cf092018-03-21 14:19:43 +0100141 </goals>
wasalaec0cf092018-03-21 14:19:43 +0100142 </execution>
143 </executions>
144 </plugin>
wasalab80bcb82018-03-26 15:48:46 +0200145
146 <!-- MAVEN JAVADOC PLUGIN -->
wasalaec0cf092018-03-21 14:19:43 +0100147 <plugin>
148 <groupId>org.apache.maven.plugins</groupId>
wasalab80bcb82018-03-26 15:48:46 +0200149 <artifactId>maven-javadoc-plugin</artifactId>
150 <version>3.0.0</version>
151 <configuration>
152 <!-- minimize console output messages -->
153 <quiet>true</quiet>
154 <verbose>false</verbose>
155 <useStandardDocletOptions>false</useStandardDocletOptions>
156 </configuration>
157 <executions>
158 <execution>
159 <id>aggregate</id>
160 <phase>site</phase>
161 <goals>
162 <goal>aggregate</goal>
163 </goals>
164 </execution>
165 <execution>
166 <id>attach-javadoc</id>
167 <goals>
168 <goal>jar</goal>
169 </goals>
170 </execution>
171 </executions>
172 </plugin>
173
174 <!-- MAVEN BUNDLE PLUGIN -->
175 <plugin>
176 <groupId>org.apache.felix</groupId>
177 <artifactId>maven-bundle-plugin</artifactId>
178 <version>3.5.0</version>
179 <extensions>true</extensions>
180 <configuration>
181 <instructions>
182 <Embed-Dependency>*;inline=false;scope=compile</Embed-Dependency>
183 <Embed-Transitive>true</Embed-Transitive>
184 <Embed-Directory>lib</Embed-Directory>
185 </instructions>
186 </configuration>
187 <executions>
188 <execution>
189 <id>Bundling PRH Jar</id>
190 <phase>package</phase>
191 <goals>
192 <goal>bundle</goal>
193 </goals>
194 </execution>
195 </executions>
196 </plugin>
197
wasalaec0cf092018-03-21 14:19:43 +0100198 <!-- maven-surefire-plugin which is used during the test phase of build lifecycle -->
199 <plugin>
200 <groupId>org.apache.maven.plugins</groupId>
201 <artifactId>maven-surefire-plugin</artifactId>
202 <version>2.19.1</version>
wasalab80bcb82018-03-26 15:48:46 +0200203 <configuration>
wasalab80bcb82018-03-26 15:48:46 +0200204 <argLine>-Xmx2048m -Djava.awt.headless=true -XX:+UseConcMarkSweepGC
205 -XX:OnOutOfMemoryError="kill -9 %p" -XX:+HeapDumpOnOutOfMemoryError
206 </argLine>
207 <redirectTestOutputToFile>${surefire.redirectTestOutputToFile}
208 </redirectTestOutputToFile>
209 <parallel>methods</parallel>
210 <threadCount>8</threadCount>
211 <forkCount>8</forkCount>
212 <reuseForks>true</reuseForks>
213 <reportFormat>xml</reportFormat>
214 <trimStackTrace>false</trimStackTrace>
215 <systemPropertyVariables>
216 <java.io.tmpdir>${project.build.directory}</java.io.tmpdir>
217 <logback.configurationFile>
218 ${basedir}/src/test/resources/logback-test.xml
219 </logback.configurationFile>
220 <HADOOP_HOME>${project.build.directory}</HADOOP_HOME>
221 </systemPropertyVariables>
222 <includes>
223 <include>**/*Test.java</include>
224 </includes>
225 <excludes>
226 <exclude>**/*IT.java</exclude>
227 </excludes>
228 <!-- Sets the VM argument line used when unit tests are run. -->
wasala96481e02018-05-16 15:17:56 +0200229 <argLine>${argLine}</argLine>
wasalab80bcb82018-03-26 15:48:46 +0200230 </configuration>
wasalaec0cf092018-03-21 14:19:43 +0100231 <dependencies>
232 <dependency>
233 <groupId>org.junit.platform</groupId>
234 <artifactId>junit-platform-surefire-provider</artifactId>
235 <version>${junit.platform.version}</version>
236 </dependency>
237 </dependencies>
238 </plugin>
wasalab80bcb82018-03-26 15:48:46 +0200239
240 <!-- FIND BUGS (STATIC CODE ANALYSIS) PLUGIN -->
241 <plugin>
242 <groupId>org.codehaus.mojo</groupId>
243 <artifactId>findbugs-maven-plugin</artifactId>
244 <version>${findbugs.plugin.version}</version>
245 <configuration>
246 <effort>Max</effort>
247 <threshold>Low</threshold>
248 <xmlOutput>true</xmlOutput>
249 <!-- BUILD FAIL ON FINDBUGS ERRORS -->
250 <failOnError>true</failOnError>
251 <excludeFilterFile>${project.basedir}/findbugs-exclude.xml</excludeFilterFile>
252 <outputDirectory>${project.reporting.outputDirectory}/findbugs</outputDirectory>
253 <findbugsXmlOutputDirectory>${project.reporting.outputDirectory}/findbugs
254 </findbugsXmlOutputDirectory>
255 </configuration>
256 <executions>
257 <execution>
258 <id>analyze-compile</id>
259 <phase>compile</phase>
260 <goals>
261 <goal>check</goal>
262 </goals>
263 </execution>
264 </executions>
265 </plugin>
266
267 <plugin>
268 <groupId>org.apache.maven.plugins</groupId>
269 <artifactId>maven-jar-plugin</artifactId>
270 <version>3.0.2</version>
271 <configuration>
272 <archive>
273 <manifest>
274 <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
275 </manifest>
276 <manifestEntries>
277 <Implementation-Build-Version>${project.version}</Implementation-Build-Version>
278 </manifestEntries>
279 </archive>
280 </configuration>
281 </plugin>
282
283 <plugin>
284 <groupId>org.apache.maven.plugins</groupId>
285 <artifactId>maven-site-plugin</artifactId>
286 <version>3.6</version>
287 </plugin>
288
289 <plugin>
290 <groupId>org.apache.maven.plugins</groupId>
291 <artifactId>maven-jxr-plugin</artifactId>
292 <version>2.5</version>
293 </plugin>
294
295 <plugin>
296 <groupId>org.apache.maven.plugins</groupId>
297 <artifactId>maven-project-info-reports-plugin</artifactId>
298 <version>2.9</version>
299 <configuration>
300 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
301 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
302 </configuration>
303 </plugin>
304
305 <plugin>
306 <groupId>org.apache.maven.plugins</groupId>
307 <artifactId>maven-surefire-report-plugin</artifactId>
308 <version>2.21.0</version>
309 </plugin>
Lusheng Ji6bb4aa22018-04-06 10:26:18 -0400310
311 <plugin>
312 <groupId>com.spotify</groupId>
313 <artifactId>docker-maven-plugin</artifactId>
wasalab0ef0452018-04-16 09:52:34 +0200314 <version>${docker.maven.version}</version>
Lusheng Ji6bb4aa22018-04-06 10:26:18 -0400315 <configuration>
316 <skipDockerBuild>true</skipDockerBuild>
317 </configuration>
318 </plugin>
wasala44ce56c2018-05-08 13:48:44 +0200319 <plugin>
320 <groupId>org.apache.maven.plugins</groupId>
321 <artifactId>maven-resources-plugin</artifactId>
322 <version>${resource.maven.plugin.version}</version>
323 </plugin>
wasala96481e02018-05-16 15:17:56 +0200324 <plugin>
325 <groupId>org.jacoco</groupId>
326 <artifactId>jacoco-maven-plugin</artifactId>
327 <executions>
328 <execution>
329 <id>default-prepare-agent</id>
330 <goals>
331 <goal>prepare-agent</goal>
332 </goals>
333 </execution>
334 <execution>
335 <id>report</id>
336 <phase>prepare-package</phase>
337 <goals>
338 <goal>report</goal>
339 </goals>
340 </execution>
341 <execution>
342 <id>check</id>
343 <goals>
344 <goal>check</goal>
345 </goals>
346 <configuration>
347 <rules>
348 <rule>
349 <element>CLASS</element>
350 <limits>
351 <limit>
352 <counter>LINE</counter>
353 <value>COVEREDRATIO</value>
354 <!--<minimum>0.70</minimum>-->
355 </limit>
356 <limit>
357 <counter>BRANCH</counter>
358 <value>COVEREDRATIO</value>
359 <!--<minimum>0.70</minimum>-->
360 </limit>
361 </limits>
362 </rule>
363 </rules>
364 </configuration>
365 </execution>
366 </executions>
367 </plugin>
wasalaec0cf092018-03-21 14:19:43 +0100368 </plugins>
369 </pluginManagement>
370 <plugins>
371 <plugin>
372 <groupId>org.apache.maven.plugins</groupId>
373 <artifactId>maven-compiler-plugin</artifactId>
374 </plugin>
wasalab80bcb82018-03-26 15:48:46 +0200375
wasala2c378ea2018-03-21 16:42:36 -0400376 <plugin>
wasalab80bcb82018-03-26 15:48:46 +0200377 <groupId>org.apache.maven.plugins</groupId>
378 <artifactId>maven-jar-plugin</artifactId>
wasala2c378ea2018-03-21 16:42:36 -0400379 </plugin>
wasalab80bcb82018-03-26 15:48:46 +0200380
381 <plugin>
382 <groupId>org.apache.maven.plugins</groupId>
383 <artifactId>maven-surefire-plugin</artifactId>
384 </plugin>
385
386 <plugin>
387 <groupId>org.apache.maven.plugins</groupId>
388 <artifactId>maven-failsafe-plugin</artifactId>
389 </plugin>
390
391 <plugin>
392 <groupId>org.apache.maven.plugins</groupId>
393 <artifactId>maven-source-plugin</artifactId>
394 </plugin>
395
396 <plugin>
397 <groupId>org.apache.maven.plugins</groupId>
398 <artifactId>maven-javadoc-plugin</artifactId>
399 </plugin>
400
wasala96481e02018-05-16 15:17:56 +0200401 <plugin>
402 <groupId>org.jacoco</groupId>
403 <artifactId>jacoco-maven-plugin</artifactId>
404 </plugin>
wasalaec0cf092018-03-21 14:19:43 +0100405 </plugins>
406 </build>
wasalab80bcb82018-03-26 15:48:46 +0200407
wasalaec0cf092018-03-21 14:19:43 +0100408 <reporting>
409 <plugins>
wasalab80bcb82018-03-26 15:48:46 +0200410
411 <plugin>
412 <groupId>org.apache.maven.plugins</groupId>
413 <artifactId>maven-site-plugin</artifactId>
414 </plugin>
415
416 <plugin>
417 <groupId>org.apache.maven.plugins</groupId>
418 <artifactId>maven-jxr-plugin</artifactId>
419 </plugin>
420
421 <plugin>
422 <groupId>org.apache.maven.plugins</groupId>
423 <artifactId>maven-project-info-reports-plugin</artifactId>
424 </plugin>
425
426 <plugin>
427 <groupId>org.apache.maven.plugins</groupId>
428 <artifactId>maven-surefire-report-plugin</artifactId>
429 </plugin>
430
wasalaec0cf092018-03-21 14:19:43 +0100431 <plugin>
432 <groupId>org.apache.maven.plugins</groupId>
433 <artifactId>maven-javadoc-plugin</artifactId>
434 <version>2.10.4</version>
435 <configuration>
436 <failOnError>false</failOnError>
437 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
438 <docletArtifact>
439 <groupId>org.umlgraph</groupId>
440 <artifactId>umlgraph</artifactId>
441 <version>5.6</version>
442 </docletArtifact>
443 <additionalparam>-views</additionalparam>
444 <useStandardDocletOptions>true</useStandardDocletOptions>
445 </configuration>
446 </plugin>
447 </plugins>
448 </reporting>
wasala2c378ea2018-03-21 16:42:36 -0400449
wasala961af3e2018-03-27 13:02:10 +0200450 <dependencyManagement>
451 <dependencies>
452
453 <!-- DEVELOPMENT TOOLS DEPENDENCIES -->
454 <dependency>
455 <groupId>org.immutables</groupId>
456 <artifactId>value</artifactId>
457 <version>${immutable.version}</version>
458 <scope>provided</scope>
459 </dependency>
wasala112044f2018-03-28 20:08:54 +0200460 <dependency>
wasalab196f932018-04-17 12:25:54 +0200461 <groupId>org.immutables</groupId>
462 <artifactId>gson</artifactId>
463 <version>${immutable.version}</version>
464 </dependency>
465 <dependency>
wasala5fbcb632018-04-18 15:21:56 +0200466 <groupId>io.projectreactor</groupId>
467 <artifactId>reactor-bom</artifactId>
468 <version>Bismuth-RELEASE</version>
469 <type>pom</type>
470 <scope>import</scope>
471 </dependency>
472 <dependency>
wasala112044f2018-03-28 20:08:54 +0200473 <groupId>com.spotify</groupId>
474 <artifactId>docker-maven-plugin</artifactId>
wasalab0ef0452018-04-16 09:52:34 +0200475 <version>${docker.maven.version}</version>
476 </dependency>
477 <dependency>
wasala44ce56c2018-05-08 13:48:44 +0200478 <groupId>org.apache.maven.plugins</groupId>
479 <artifactId>maven-resources-plugin</artifactId>
480 <version>${resource.maven.plugin.version}</version>
481 </dependency>
482 <dependency>
wasalab0ef0452018-04-16 09:52:34 +0200483 <groupId>org.bouncycastle</groupId>
484 <artifactId>bcprov-jdk15on</artifactId>
485 <version>1.59</version>
486 </dependency>
487 <dependency>
488 <groupId>org.bouncycastle</groupId>
489 <artifactId>bcpkix-jdk15on</artifactId>
490 <version>1.59</version>
491 </dependency>
492 <dependency>
493 <groupId>org.codehaus.plexus</groupId>
494 <artifactId>plexus-utils</artifactId>
495 <version>3.1.0</version>
496 </dependency>
497 <dependency>
wasala3c2e8c92018-04-12 13:37:41 +0200498 <groupId>org.apache.httpcomponents</groupId>
499 <artifactId>httpclient</artifactId>
500 <version>4.5.4</version>
501 </dependency>
502 <dependency>
wasala3c2e8c92018-04-12 13:37:41 +0200503 <groupId>org.apache.commons</groupId>
504 <artifactId>commons-lang3</artifactId>
505 <version>3.6</version>
506 </dependency>
507 <dependency>
508 <groupId>org.springframework</groupId>
509 <artifactId>spring-beans</artifactId>
wasalab0ef0452018-04-16 09:52:34 +0200510 <version>5.0.5.RELEASE</version>
511 </dependency>
512 <dependency>
513 <groupId>org.springframework</groupId>
514 <artifactId>spring-context</artifactId>
515 <version>5.0.5.RELEASE</version>
wasala3c2e8c92018-04-12 13:37:41 +0200516 </dependency>
517 <dependency>
wasalab0ef0452018-04-16 09:52:34 +0200518 <groupId>org.apache.tomcat.embed</groupId>
519 <artifactId>tomcat-embed-core</artifactId>
520 <version>${tomcat.version}</version>
521 </dependency>
522 <dependency>
523 <groupId>org.apache.tomcat.embed</groupId>
524 <artifactId>tomcat-embed-el</artifactId>
525 <version>${tomcat.version}</version>
526 </dependency>
527 <dependency>
528 <groupId>org.apache.tomcat.embed</groupId>
529 <artifactId>tomcat-embed-websocket</artifactId>
530 <version>${tomcat.version}</version>
wasala3c2e8c92018-04-12 13:37:41 +0200531 </dependency>
wasala961af3e2018-03-27 13:02:10 +0200532
533 <!-- LOGGING dependencies> -->
534 <dependency>
wasala961af3e2018-03-27 13:02:10 +0200535 <groupId>ch.qos.logback</groupId>
536 <artifactId>logback-classic</artifactId>
537 <version>${logback.version}</version>
538 <scope>provided</scope>
539 </dependency>
wasalad8e4e882018-03-28 14:20:58 +0200540 <dependency>
541 <groupId>org.slf4j</groupId>
542 <artifactId>jul-to-slf4j</artifactId>
543 <version>1.7.25</version>
544 </dependency>
545 <dependency>
546 <groupId>org.slf4j</groupId>
547 <artifactId>log4j-over-slf4j</artifactId>
548 <version>1.7.25</version>
549 </dependency>
wasala961af3e2018-03-27 13:02:10 +0200550
551 <!-- TESTING TOOLS DEPENDENCIES -->
552 <dependency>
553 <groupId>org.junit.jupiter</groupId>
554 <artifactId>junit-jupiter-api</artifactId>
555 <version>${junit.jupiter.version}</version>
556 <scope>test</scope>
557 </dependency>
558 <dependency>
559 <groupId>junit</groupId>
560 <artifactId>junit</artifactId>
561 <version>${junit.version}</version>
562 <scope>test</scope>
563 </dependency>
564 <dependency>
565 <groupId>org.junit.jupiter</groupId>
566 <artifactId>junit-jupiter-engine</artifactId>
567 <version>${junit.jupiter.version}</version>
568 <scope>test</scope>
569 </dependency>
570 <dependency>
571 <groupId>org.junit.vintage</groupId>
572 <artifactId>junit-vintage-engine</artifactId>
573 <version>${junit.vintage.version}</version>
574 <scope>test</scope>
575 </dependency>
576 <dependency>
577 <groupId>org.springframework</groupId>
578 <artifactId>spring-test</artifactId>
579 <version>5.0.4.RELEASE</version>
580 <scope>test</scope>
581 </dependency>
582 <dependency>
583 <groupId>org.mockito</groupId>
584 <artifactId>mockito-core</artifactId>
585 <version>2.16.0</version>
586 <scope>test</scope>
587 </dependency>
588 <dependency>
589 <groupId>org.testng</groupId>
590 <artifactId>testng</artifactId>
591 <version>6.14.2</version>
592 <scope>test</scope>
593 </dependency>
594 <dependency>
wasalab0ef0452018-04-16 09:52:34 +0200595 <groupId>org.glassfish.jersey.connectors</groupId>
596 <artifactId>jersey-apache-connector</artifactId>
597 <version>2.25.1</version>
598 <scope>test</scope>
599 </dependency>
600 <dependency>
wasala961af3e2018-03-27 13:02:10 +0200601 <groupId>org.springframework.boot</groupId>
602 <artifactId>spring-boot-starter-test</artifactId>
wasalab0ef0452018-04-16 09:52:34 +0200603 <version>2.0.1.RELEASE</version>
wasala961af3e2018-03-27 13:02:10 +0200604 <scope>test</scope>
605 </dependency>
606
micdzied7e7aa0c2018-05-07 08:42:44 +0200607 <!--REQUIRED TO GENERATE DOCUMENTATION -->
608 <dependency>
609 <groupId>io.springfox</groupId>
610 <artifactId>springfox-swagger2</artifactId>
611 <version>2.8.0</version>
612 </dependency>
613 <dependency>
614 <groupId>io.springfox</groupId>
615 <artifactId>springfox-swagger-ui</artifactId>
616 <version>2.8.0</version>
617 </dependency>
618
wasala961af3e2018-03-27 13:02:10 +0200619 <!-- ONLY REQUIRED TO RUN TESTS IN AN IDE THAT BUNDLES AN OLDER VERSION -->
620 <dependency>
621 <groupId>org.junit.platform</groupId>
622 <artifactId>junit-platform-launcher</artifactId>
623 <version>${junit.platform.version}</version>
624 <scope>test</scope>
625 </dependency>
626
627 </dependencies>
628 </dependencyManagement>
629
wasalab80bcb82018-03-26 15:48:46 +0200630 <modules>
631 <module>prh-app-server</module>
632 <module>prh-aai-client</module>
633 <module>prh-dmaap-client</module>
pwielebsa393ae32018-05-07 16:58:20 +0200634 <module>prh-commons</module>
wasalab80bcb82018-03-26 15:48:46 +0200635 </modules>
Lusheng Ji44fb1712018-03-21 16:42:36 -0400636</project>
wasala2c378ea2018-03-21 16:42:36 -0400637