Switch to JRE 11 in Dockerfiles
[dcaegen2/collectors/hv-ves.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ dcaegen2-collectors-veshv
5   ~ ================================================================================
6   ~ Copyright (C) 2018 NOKIA
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   -->
21 <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">
22
23     <modelVersion>4.0.0</modelVersion>
24
25     <licenses>
26         <license>
27             <name>The Apache Software License, Version 2.0</name>
28             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
29         </license>
30     </licenses>
31
32     <parent>
33         <groupId>org.onap.oparent</groupId>
34         <artifactId>oparent</artifactId>
35         <version>1.2.0</version>
36         <relativePath/>
37     </parent>
38
39     <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
40     <artifactId>ves-hv-collector</artifactId>
41     <version>4.0.0-SNAPSHOT</version>
42     <name>dcaegen2-collectors-veshv</name>
43     <description>VES HighVolume Collector</description>
44     <packaging>pom</packaging>
45
46     <modules>
47         <module>hv-collector-analysis</module>
48         <module>hv-collector-core</module>
49         <module>hv-collector-coverage</module>
50         <module>hv-collector-ct</module>
51         <module>hv-collector-dcae-app-simulator</module>
52         <module>hv-collector-domain</module>
53         <module>hv-collector-health-check</module>
54         <module>hv-collector-main</module>
55         <module>hv-collector-ssl</module>
56         <module>hv-collector-test-utils</module>
57         <module>hv-collector-utils</module>
58         <module>hv-collector-ves-message-generator</module>
59         <module>hv-collector-xnf-simulator</module>
60     </modules>
61
62     <properties>
63         <kotlin.version>1.3.0</kotlin.version>
64         <arrow.version>0.8.0</arrow.version>
65         <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
66         <build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version>
67         <jacoco.version>0.8.2</jacoco.version>
68         <jacoco.minimum.coverage>60</jacoco.minimum.coverage>
69
70         <!-- Protocol buffers -->
71         <protobuf.version>3.5.1</protobuf.version>
72         <protoc-jar-maven-plugin.version>3.5.1.1</protoc-jar-maven-plugin.version>
73         <protobuf-generated-files.directory>${project.build.directory}/generated-sources/proto/main/java/
74         </protobuf-generated-files.directory>
75
76         <!-- Testing and code analysis -->
77         <junit-platform.version>1.2.0-RC1</junit-platform.version>
78         <junit-jupiter.version>5.2.0-RC1</junit-jupiter.version>
79         <spek.version>1.1.5</spek.version>
80         <maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>
81         <failIfMissingUnitTests>false</failIfMissingUnitTests>
82         <failIfMissingComponentTests>false</failIfMissingComponentTests>
83         <skipAnalysis>true</skipAnalysis>
84
85         <!-- Docker -->
86         <skipDocker>false</skipDocker>
87         <skipDockerPush>true</skipDockerPush>
88         <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
89         <docker-image.registry>${onap.nexus.dockerregistry.daily}</docker-image.registry>
90         <docker-image.namespace>onap</docker-image.namespace>
91         <docker-image.name>${project.groupId}.${project.artifactId}</docker-image.name>
92         <docker.http_proxy/>
93
94     </properties>
95
96     <build>
97         <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
98         <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
99         <resources>
100             <resource>
101                 <directory>${project.basedir}/src/main/resources</directory>
102             </resource>
103         </resources>
104         <pluginManagement>
105             <plugins>
106                 <plugin>
107                     <groupId>org.apache.maven.plugins</groupId>
108                     <artifactId>maven-resources-plugin</artifactId>
109                     <version>3.1.0</version>
110                     <configuration>
111                         <encoding>UTF-8</encoding>
112                     </configuration>
113                 </plugin>
114                 <plugin>
115                     <groupId>org.apache.maven.plugins</groupId>
116                     <artifactId>maven-deploy-plugin</artifactId>
117                     <configuration>
118                         <skip>true</skip>
119                     </configuration>
120                 </plugin>
121                 <plugin>
122                     <artifactId>kotlin-maven-plugin</artifactId>
123                     <groupId>org.jetbrains.kotlin</groupId>
124                     <version>${kotlin.version}</version>
125                     <configuration>
126                         <jvmTarget>1.8</jvmTarget>
127                         <experimentalCoroutines>enable</experimentalCoroutines>
128                     </configuration>
129                     <executions>
130                         <execution>
131                             <id>compile</id>
132                             <goals>
133                                 <goal>compile</goal>
134                             </goals>
135                             <configuration>
136                                 <sourceDirs>
137                                     <source>${project.build.sourceDirectory}</source>
138                                     <source>${project.build.directory}/generated-sources/annotations</source>
139                                 </sourceDirs>
140                             </configuration>
141                         </execution>
142                         <execution>
143                             <id>test-compile</id>
144                             <goals>
145                                 <goal>test-compile</goal>
146                             </goals>
147                             <configuration>
148                                 <sourceDirs>
149                                     <source>${project.build.testSourceDirectory}</source>
150                                 </sourceDirs>
151                             </configuration>
152                         </execution>
153                     </executions>
154                 </plugin>
155                 <plugin>
156                     <groupId>com.github.os72</groupId>
157                     <artifactId>protoc-jar-maven-plugin</artifactId>
158                     <version>${protoc-jar-maven-plugin.version}</version>
159                 </plugin>
160                 <plugin>
161                     <groupId>org.codehaus.mojo</groupId>
162                     <artifactId>build-helper-maven-plugin</artifactId>
163                     <version>${build-helper-maven-plugin.version}</version>
164                     <executions>
165                         <execution>
166                             <id>add-source</id>
167                             <phase>generate-sources</phase>
168                             <goals>
169                                 <goal>add-source</goal>
170                             </goals>
171                             <configuration>
172                                 <sources>
173                                     <source>${protobuf-generated-files.directory}</source>
174                                 </sources>
175                             </configuration>
176                         </execution>
177                     </executions>
178                 </plugin>
179                 <plugin>
180                     <groupId>org.apache.maven.plugins</groupId>
181                     <artifactId>maven-compiler-plugin</artifactId>
182                     <version>${maven-compiler-plugin.version}</version>
183                     <configuration>
184                         <source>8</source>
185                         <target>8</target>
186                         <encoding>UTF-8</encoding>
187                         <showWarnings>true</showWarnings>
188                         <showDeprecation>true</showDeprecation>
189                         <failOnWarning>false</failOnWarning>
190                     </configuration>
191                     <dependencies>
192                         <dependency>
193                             <groupId>org.ow2.asm</groupId>
194                             <artifactId>asm</artifactId>
195                             <version>6.1.1</version> <!-- Use newer version of ASM -->
196                         </dependency>
197                     </dependencies>
198                 </plugin>
199                 <!--
200                  Due to a memory leak in Surefire 2.20 and issues running on Java 9, the junit-platform-surefire-provider
201                  currently only works with Surefire 2.19.1.
202                  For updates see https://junit.org/junit5/docs/current/user-guide/#running-tests-build-maven
203                  -->
204                 <plugin>
205                     <artifactId>maven-surefire-plugin</artifactId>
206                     <groupId>org.apache.maven.plugins</groupId>
207                     <version>${maven-surefire-plugin.version}</version>
208                     <configuration>
209                         <failIfNoTests>${failIfMissingUnitTests}</failIfNoTests>
210                         <forkCount>1</forkCount>
211                         <includes>
212                             <include>**/*Test.*</include>
213                         </includes>
214                     </configuration>
215                     <dependencies>
216                         <dependency>
217                             <groupId>org.apache.commons</groupId>
218                             <artifactId>commons-lang3</artifactId>
219                             <version>3.7</version>
220                         </dependency>
221                         <dependency>
222                             <groupId>org.junit.platform</groupId>
223                             <artifactId>junit-platform-surefire-provider</artifactId>
224                             <version>${junit-platform.version}</version>
225                             <scope>runtime</scope>
226                         </dependency>
227                         <dependency>
228                             <groupId>org.jetbrains.spek</groupId>
229                             <artifactId>spek-junit-platform-engine</artifactId>
230                             <version>${spek.version}</version>
231                             <scope>runtime</scope>
232                         </dependency>
233                     </dependencies>
234                 </plugin>
235                 <plugin>
236                     <groupId>org.apache.maven.plugins</groupId>
237                     <artifactId>maven-failsafe-plugin</artifactId>
238                     <version>2.22.0</version>
239                     <configuration>
240                         <failIfNoTests>${failIfMissingComponentTests}</failIfNoTests>
241                         <forkCount>1</forkCount>
242                         <includes>
243                             <include>**/*Specification.*</include>
244                         </includes>
245                     </configuration>
246                     <dependencies>
247                         <dependency>
248                             <groupId>org.apache.commons</groupId>
249                             <artifactId>commons-lang3</artifactId>
250                             <version>3.7</version>
251                         </dependency>
252                         <dependency>
253                             <groupId>org.junit.platform</groupId>
254                             <artifactId>junit-platform-surefire-provider</artifactId>
255                             <version>${junit-platform.version}</version>
256                             <scope>runtime</scope>
257                         </dependency>
258                         <dependency>
259                             <groupId>org.jetbrains.spek</groupId>
260                             <artifactId>spek-junit-platform-engine</artifactId>
261                             <version>${spek.version}</version>
262                             <scope>runtime</scope>
263                         </dependency>
264                     </dependencies>
265                 </plugin>
266                 <plugin>
267                     <groupId>org.codehaus.mojo</groupId>
268                     <artifactId>exec-maven-plugin</artifactId>
269                     <version>1.6.0</version>
270                 </plugin>
271             </plugins>
272         </pluginManagement>
273         <plugins>
274             <plugin>
275                 <artifactId>maven-checkstyle-plugin</artifactId>
276                 <version>2.17</version>
277                 <dependencies>
278                     <dependency>
279                         <groupId>org.onap.oparent</groupId>
280                         <artifactId>checkstyle</artifactId>
281                         <version>1.1.1</version>
282                     </dependency>
283                 </dependencies>
284                 <executions>
285                     <execution>
286                         <!-- To override oparent configuration different id must be used
287                              We need to override it to include .kt files in check. -->
288                         <id>check-license-kotlin</id>
289                         <goals>
290                             <goal>check</goal>
291                         </goals>
292                         <phase>process-sources</phase>
293                         <configuration>
294                             <configLocation>onap-checkstyle/check-license.xml</configLocation>
295                             <includeResources>false</includeResources>
296                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
297                             <includeTestResources>false</includeTestResources>
298                             <includes>**\/*.kt</includes>
299                             <consoleOutput>true</consoleOutput>
300                             <!--<failOnViolation>false</failOnViolation>-->
301                         </configuration>
302                     </execution>
303                 </executions>
304             </plugin>
305             <plugin>
306                 <groupId>org.apache.maven.plugins</groupId>
307                 <artifactId>maven-antrun-plugin</artifactId>
308                 <version>1.8</version>
309                 <executions>
310                     <execution>
311                         <!-- This can be run separately with mvn antrun:run@detekt -->
312                         <id>detekt</id>
313                         <phase>verify</phase>
314                         <goals>
315                             <goal>run</goal>
316                         </goals>
317                         <configuration>
318                             <target name="detekt" unless="${skipAnalysis}">
319                                 <java taskname="detekt" dir="${basedir}" fork="true" failonerror="true" classname="io.gitlab.arturbosch.detekt.cli.Main" classpathref="maven.plugin.classpath">
320                                     <arg value="--input"/>
321                                     <arg value="${basedir}/src/main/kotlin"/>
322                                     <arg value="--config-resource"/>
323                                     <arg value="onap-detekt-config.yml"/>
324                                     <arg value="--filters"/>
325                                     <arg value=".*/target/.*,.*/resources/.*"/>
326                                     <arg value="--output"/>
327                                     <arg value="${basedir}/target/reports"/>
328                                     <arg value="--output-name"/>
329                                     <arg value="detekt-report"/>
330                                     <arg value="--baseline"/>
331                                     <arg value="${basedir}/target/reports/baseline.xml"/>
332                                 </java>
333                             </target>
334                         </configuration>
335                     </execution>
336                 </executions>
337                 <dependencies>
338                     <dependency>
339                         <groupId>io.gitlab.arturbosch.detekt</groupId>
340                         <artifactId>detekt-cli</artifactId>
341                         <version>1.0.0.RC7</version>
342                     </dependency>
343                     <dependency>
344                         <groupId>${project.groupId}</groupId>
345                         <artifactId>hv-collector-analysis</artifactId>
346                         <version>4.0.0-SNAPSHOT</version>
347                     </dependency>
348                 </dependencies>
349             </plugin>
350         </plugins>
351         <extensions>
352             <extension>
353                 <groupId>kr.motd.maven</groupId>
354                 <artifactId>os-maven-plugin</artifactId>
355                 <version>1.6.0</version>
356             </extension>
357         </extensions>
358     </build>
359
360     <profiles>
361         <profile>
362             <id>docker-proxy</id>
363             <activation>
364                 <property>
365                     <name>docker.http_proxy</name>
366                 </property>
367             </activation>
368             <properties>
369                 <!-- set build args as defined in https://dmp.fabric8.io/#build-buildargs -->
370                 <docker.buildArg.http_proxy>${docker.http_proxy}</docker.buildArg.http_proxy>
371                 <docker.buildArg.https_proxy>${docker.http_proxy}</docker.buildArg.https_proxy>
372             </properties>
373         </profile>
374
375         <profile>
376             <id>docker</id>
377             <activation>
378                 <property>
379                     <name>!skipDocker</name>
380                 </property>
381             </activation>
382             <properties>
383                 <os.detected.name>linux</os.detected.name>
384                 <os.detected.arch>x86_64</os.detected.arch>
385                 <os.detected.classifier>${os.detected.name}-${os.detected.arch}</os.detected.classifier>
386             </properties>
387             <build>
388                 <pluginManagement>
389                     <plugins>
390                         <plugin>
391                             <groupId>org.apache.maven.plugins</groupId>
392                             <artifactId>maven-dependency-plugin</artifactId>
393                             <version>3.1.1</version>
394                             <executions>
395                                 <execution>
396                                     <id>docker-copy-internal-deps</id>
397                                     <phase>package</phase>
398                                     <goals>
399                                         <goal>copy-dependencies</goal>
400                                     </goals>
401                                     <configuration>
402                                         <outputDirectory>${project.build.directory}/libs/internal</outputDirectory>
403                                         <includeGroupIds>${project.parent.groupId}</includeGroupIds>
404                                         <includeScope>runtime</includeScope>
405                                     </configuration>
406                                 </execution>
407                                 <execution>
408                                     <id>docker-copy-external-deps</id>
409                                     <phase>package</phase>
410                                     <goals>
411                                         <goal>copy-dependencies</goal>
412                                     </goals>
413                                     <configuration>
414                                         <outputDirectory>${project.build.directory}/libs/external</outputDirectory>
415                                         <excludeGroupIds>${project.parent.groupId}</excludeGroupIds>
416                                         <includeScope>runtime</includeScope>
417                                     </configuration>
418                                 </execution>
419                             </executions>
420                         </plugin>
421                         <plugin>
422                             <groupId>io.fabric8</groupId>
423                             <artifactId>docker-maven-plugin</artifactId>
424                             <version>0.26.0</version>
425                             <executions>
426                                 <execution>
427                                     <id>docker-build-image</id>
428                                     <phase>package</phase>
429                                     <goals>
430                                         <goal>build</goal>
431                                     </goals>
432                                 </execution>
433                                 <execution>
434                                     <id>docker-push-image</id>
435                                     <phase>deploy</phase>
436                                     <goals>
437                                         <goal>push</goal>
438                                     </goals>
439                                 </execution>
440                             </executions>
441                             <configuration>
442                                 <skipPush>${skipDockerPush}</skipPush>
443                                 <verbose>true</verbose>
444                                 <imagePullPolicy>IfNotPresent</imagePullPolicy>
445                                 <images>
446                                     <image>
447                                         <alias>${project.artifactId}</alias>
448                                         <name>${docker-image.namespace}/${docker-image.name}
449                                         </name>
450                                         <registry>${docker-image.registry}</registry>
451                                         <build>
452                                             <dockerFileDir>${project.basedir}</dockerFileDir>
453                                             <tags>
454                                                 <tag>${project.version}-${maven.build.timestamp}Z</tag>
455                                                 <tag>${project.version}</tag>
456                                                 <tag>latest</tag>
457                                             </tags>
458                                         </build>
459                                     </image>
460                                 </images>
461                             </configuration>
462                         </plugin>
463                     </plugins>
464                 </pluginManagement>
465             </build>
466         </profile>
467     </profiles>
468
469     <pluginRepositories>
470         <pluginRepository>
471             <id>arturbosch-code-analysis</id>
472             <name>arturbosch-code-analysis (for detekt)</name>
473             <url>https://dl.bintray.com/arturbosch/code-analysis/</url>
474             <layout>default</layout>
475             <releases>
476                 <enabled>true</enabled>
477                 <updatePolicy>never</updatePolicy>
478             </releases>
479             <snapshots>
480                 <enabled>false</enabled>
481                 <updatePolicy>never</updatePolicy>
482             </snapshots>
483         </pluginRepository>
484     </pluginRepositories>
485
486     <repositories>
487         <repository>
488             <id>40_openecomp-release</id>
489             <name>40_openecomp-release</name>
490             <url>https://nexus.onap.org/content/repositories/releases/</url>
491             <releases>
492                 <enabled>true</enabled>
493                 <updatePolicy>daily</updatePolicy>
494             </releases>
495             <snapshots>
496                 <enabled>false</enabled>
497             </snapshots>
498         </repository>
499     </repositories>
500
501     <dependencyManagement>
502         <dependencies>
503             <dependency>
504                 <groupId>com.google.guava</groupId>
505                 <artifactId>guava</artifactId>
506
507                 <exclusions>
508                     <exclusion>
509                         <groupId>com.google.code.findbugs</groupId>
510                         <artifactId>jsr305</artifactId>
511                     </exclusion>
512                 </exclusions>
513             </dependency>
514             <dependency>
515                 <groupId>org.jetbrains.kotlin</groupId>
516                 <artifactId>kotlin-stdlib-jdk8</artifactId>
517                 <version>${kotlin.version}</version>
518             </dependency>
519             <dependency>
520                 <groupId>org.jetbrains.kotlin</groupId>
521                 <artifactId>kotlin-reflect</artifactId>
522                 <version>${kotlin.version}</version>
523             </dependency>
524             <dependency>
525                 <groupId>org.jetbrains.kotlinx</groupId>
526                 <artifactId>kotlinx-coroutines-core</artifactId>
527                 <version>1.0.0</version>
528             </dependency>
529             <dependency>
530                 <groupId>io.arrow-kt</groupId>
531                 <artifactId>arrow-core</artifactId>
532                 <version>${arrow.version}</version>
533                 <exclusions>
534                     <exclusion>
535                         <groupId>org.jetbrains.kotlin</groupId>
536                         <artifactId>kotlin-stdlib</artifactId>
537                     </exclusion>
538                     <exclusion>
539                         <groupId>org.jetbrains.kotlin</groupId>
540                         <artifactId>kotlin-stdlib-jdk7</artifactId>
541                     </exclusion>
542                 </exclusions>
543             </dependency>
544             <dependency>
545                 <groupId>io.arrow-kt</groupId>
546                 <artifactId>arrow-syntax</artifactId>
547                 <version>${arrow.version}</version>
548             </dependency>
549             <dependency>
550                 <groupId>io.arrow-kt</groupId>
551                 <artifactId>arrow-instances-core</artifactId>
552                 <version>${arrow.version}</version>
553             </dependency>
554             <dependency>
555                 <groupId>io.arrow-kt</groupId>
556                 <artifactId>arrow-instances-data</artifactId>
557                 <version>${arrow.version}</version>
558             </dependency>
559             <dependency>
560                 <groupId>io.arrow-kt</groupId>
561                 <artifactId>arrow-effects</artifactId>
562                 <version>${arrow.version}</version>
563             </dependency>
564             <dependency>
565                 <groupId>io.arrow-kt</groupId>
566                 <artifactId>arrow-effects-instances</artifactId>
567                 <version>${arrow.version}</version>
568             </dependency>
569             <dependency>
570                 <groupId>io.arrow-kt</groupId>
571                 <artifactId>arrow-effects-reactor</artifactId>
572                 <version>${arrow.version}</version>
573             </dependency>
574             <dependency>
575                 <groupId>ch.qos.logback</groupId>
576                 <artifactId>logback-classic</artifactId>
577                 <version>1.3.0-alpha4</version>
578                 <scope>runtime</scope>
579             </dependency>
580             <dependency>
581                 <groupId>org.slf4j</groupId>
582                 <artifactId>slf4j-api</artifactId>
583                 <version>1.8.0-beta1</version>
584             </dependency>
585             <dependency>
586                 <groupId>io.projectreactor</groupId>
587                 <artifactId>reactor-bom</artifactId>
588                 <!-- remember to update netty native bindings versions -->
589                 <version>Bismuth-SR11</version>
590                 <type>pom</type>
591                 <scope>import</scope>
592             </dependency>
593
594             <!--
595             Disable native extensions (ssl and epoll) on production for now.
596             Might be reintroduced if performance tests prove there is some performance issue.
597             -->
598             <dependency>
599                 <groupId>io.netty</groupId>
600                 <artifactId>netty-tcnative-boringssl-static</artifactId>
601                 <version>2.0.15.Final</version>
602                 <scope>runtime</scope>
603                 <classifier>${os.detected.classifier}</classifier>
604             </dependency>
605             <!--
606             <dependency>
607                 <groupId>io.netty</groupId>
608                 <artifactId>netty-transport-native-epoll</artifactId>
609                 <version>4.1.29.Final</version>
610                 <classifier>${os.detected.classifier}</classifier>
611             </dependency>
612             -->
613             <dependency>
614                 <groupId>com.google.protobuf</groupId>
615                 <artifactId>protobuf-java</artifactId>
616                 <version>${protobuf.version}</version>
617             </dependency>
618             <dependency>
619                 <groupId>com.google.protobuf</groupId>
620                 <artifactId>protobuf-java-util</artifactId>
621                 <version>${protobuf.version}</version>
622             </dependency>
623             <dependency>
624                 <groupId>commons-cli</groupId>
625                 <artifactId>commons-cli</artifactId>
626                 <version>1.4</version>
627             </dependency>
628             <dependency>
629                 <groupId>javax.json</groupId>
630                 <artifactId>javax.json-api</artifactId>
631                 <version>1.1.2</version>
632             </dependency>
633             <dependency>
634                 <groupId>org.glassfish</groupId>
635                 <artifactId>javax.json</artifactId>
636                 <version>1.1.2</version>
637             </dependency>
638             <dependency>
639                 <!-- To override ratpack transitive dependency which creates security vulnerability
640                 This issue will be resolved with ratpack 1.6.0 release -->
641                 <groupId>com.fasterxml.jackson.core</groupId>
642                 <artifactId>jackson-databind</artifactId>
643                 <version>2.9.6</version>
644             </dependency>
645             <dependency>
646                 <groupId>io.ratpack</groupId>
647                 <artifactId>ratpack-core</artifactId>
648                 <version>1.5.4</version>
649             </dependency>
650             <dependency>
651                 <groupId>io.micrometer</groupId>
652                 <artifactId>micrometer-registry-jmx</artifactId>
653                 <version>1.0.5</version>
654             </dependency>
655
656             <!-- Test dependencies -->
657
658             <dependency>
659                 <groupId>org.jetbrains.spek</groupId>
660                 <artifactId>spek-api</artifactId>
661                 <version>${spek.version}</version>
662                 <scope>test</scope>
663             </dependency>
664             <dependency>
665                 <groupId>org.jetbrains.spek</groupId>
666                 <artifactId>spek-junit-platform-engine</artifactId>
667                 <version>${spek.version}</version>
668                 <scope>test</scope>
669             </dependency>
670             <dependency>
671                 <groupId>org.assertj</groupId>
672                 <artifactId>assertj-core</artifactId>
673                 <version>3.9.1</version>
674                 <scope>test</scope>
675             </dependency>
676             <dependency>
677                 <groupId>com.nhaarman</groupId>
678                 <artifactId>mockito-kotlin</artifactId>
679                 <version>1.5.0</version>
680                 <scope>test</scope>
681                 <exclusions>
682                     <exclusion>
683                         <groupId>org.mockito</groupId>
684                         <artifactId>mockito-core</artifactId>
685                     </exclusion>
686                 </exclusions>
687             </dependency>
688             <dependency>
689                 <groupId>org.mockito</groupId>
690                 <artifactId>mockito-core</artifactId>
691                 <version>2.18.3</version>
692                 <scope>test</scope>
693             </dependency>
694             <dependency>
695                 <groupId>org.jetbrains.kotlin</groupId>
696                 <artifactId>kotlin-test</artifactId>
697                 <version>${kotlin.version}</version>
698                 <scope>test</scope>
699             </dependency>
700             <dependency>
701                 <groupId>io.projectreactor</groupId>
702                 <artifactId>reactor-test</artifactId>
703                 <version>3.1.7.RELEASE</version>
704                 <scope>test</scope>
705             </dependency>
706         </dependencies>
707     </dependencyManagement>
708 </project>