7ab6503496f3dece6545b04ad393803fa913578a
[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"
22         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23
24     <modelVersion>4.0.0</modelVersion>
25
26     <licenses>
27         <license>
28             <name>The Apache Software License, Version 2.0</name>
29             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30         </license>
31     </licenses>
32
33     <parent>
34         <groupId>org.onap.oparent</groupId>
35         <artifactId>oparent</artifactId>
36         <version>0.1.1</version>
37         <relativePath/>
38     </parent>
39
40     <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
41     <artifactId>ves-hv-collector</artifactId>
42     <version>1.0.0-SNAPSHOT</version>
43     <name>dcaegen2-collectors-veshv</name>
44     <description>VES HighVolume Collector</description>
45     <packaging>pom</packaging>
46
47     <modules>
48         <module>hv-collector-analysis</module>
49         <module>hv-collector-core</module>
50         <module>hv-collector-coverage</module>
51         <module>hv-collector-ct</module>
52         <module>hv-collector-dcae-app-simulator</module>
53         <module>hv-collector-domain</module>
54         <module>hv-collector-health-check</module>
55         <module>hv-collector-main</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.2.61</kotlin.version>
64         <arrow.version>0.7.3</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></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}"
320                                         fork="true"
321                                         failonerror="true"
322                                         classname="io.gitlab.arturbosch.detekt.cli.Main"
323                                         classpathref="maven.plugin.classpath">
324                                     <arg value="--input"/>
325                                     <arg value="${basedir}/src/main/kotlin"/>
326                                     <arg value="--config-resource"/>
327                                     <arg value="onap-detekt-config.yml"/>
328                                     <arg value="--filters"/>
329                                     <arg value=".*/target/.*,.*/resources/.*"/>
330                                     <arg value="--output"/>
331                                     <arg value="${basedir}/target/reports"/>
332                                     <arg value="--output-name"/>
333                                     <arg value="detekt-report"/>
334                                     <arg value="--baseline"/>
335                                     <arg value="${basedir}/target/reports/baseline.xml"/>
336                                 </java>
337                             </target>
338                         </configuration>
339                     </execution>
340                 </executions>
341                 <dependencies>
342                     <dependency>
343                         <groupId>io.gitlab.arturbosch.detekt</groupId>
344                         <artifactId>detekt-cli</artifactId>
345                         <version>1.0.0.RC7</version>
346                     </dependency>
347                     <dependency>
348                         <groupId>${project.groupId}</groupId>
349                         <artifactId>hv-collector-analysis</artifactId>
350                         <version>1.0.0-SNAPSHOT</version>
351                     </dependency>
352                 </dependencies>
353             </plugin>
354         </plugins>
355         <extensions>
356             <extension>
357                 <groupId>kr.motd.maven</groupId>
358                 <artifactId>os-maven-plugin</artifactId>
359                 <version>1.6.0</version>
360             </extension>
361         </extensions>
362     </build>
363
364     <profiles>
365         <profile>
366             <id>docker</id>
367             <activation>
368                 <property>
369                     <name>!skipDocker</name>
370                 </property>
371             </activation>
372             <properties>
373                 <os.detected.name>linux</os.detected.name>
374                 <os.detected.arch>x86_64</os.detected.arch>
375                 <os.detected.classifier>${os.detected.name}-${os.detected.arch}</os.detected.classifier>
376             </properties>
377             <build>
378                 <pluginManagement>
379                     <plugins>
380                         <plugin>
381                             <groupId>org.apache.maven.plugins</groupId>
382                             <artifactId>maven-dependency-plugin</artifactId>
383                             <version>3.1.1</version>
384                             <executions>
385                                 <execution>
386                                     <id>docker-copy-internal-deps</id>
387                                     <phase>package</phase>
388                                     <goals>
389                                         <goal>copy-dependencies</goal>
390                                     </goals>
391                                     <configuration>
392                                         <outputDirectory>${project.build.directory}/libs/internal</outputDirectory>
393                                         <includeGroupIds>${project.parent.groupId}</includeGroupIds>
394                                         <includeScope>runtime</includeScope>
395                                     </configuration>
396                                 </execution>
397                                 <execution>
398                                     <id>docker-copy-external-deps</id>
399                                     <phase>package</phase>
400                                     <goals>
401                                         <goal>copy-dependencies</goal>
402                                     </goals>
403                                     <configuration>
404                                         <outputDirectory>${project.build.directory}/libs/external</outputDirectory>
405                                         <excludeGroupIds>${project.parent.groupId}</excludeGroupIds>
406                                         <includeScope>runtime</includeScope>
407                                     </configuration>
408                                 </execution>
409                             </executions>
410                         </plugin>
411                         <plugin>
412                             <groupId>io.fabric8</groupId>
413                             <artifactId>docker-maven-plugin</artifactId>
414                             <version>0.26.0</version>
415                             <executions>
416                                 <execution>
417                                     <id>docker-build-image</id>
418                                     <phase>package</phase>
419                                     <goals>
420                                         <goal>build</goal>
421                                     </goals>
422                                 </execution>
423                                 <execution>
424                                     <id>docker-push-image</id>
425                                     <phase>deploy</phase>
426                                     <goals>
427                                         <goal>push</goal>
428                                     </goals>
429                                 </execution>
430                             </executions>
431                             <configuration>
432                                 <skipPush>${skipDockerPush}</skipPush>
433                                 <verbose>true</verbose>
434                                 <imagePullPolicy>IfNotPresent</imagePullPolicy>
435                                 <images>
436                                     <image>
437                                         <alias>${project.artifactId}</alias>
438                                         <name>${docker-image.namespace}/${docker-image.name}
439                                         </name>
440                                         <registry>${docker-image.registry}</registry>
441                                         <build>
442                                             <!--
443                                             <args>
444                                                 <http_proxy>${docker.http_proxy}</http_proxy>
445                                                 <https_proxy>${docker.http_proxy}</https_proxy>
446                                             </args>
447                                             -->
448                                             <dockerFileDir>${project.basedir}</dockerFileDir>
449                                             <tags>
450                                                 <tag>${project.version}-${maven.build.timestamp}Z</tag>
451                                                 <tag>${project.version}</tag>
452                                                 <tag>latest</tag>
453                                             </tags>
454                                         </build>
455                                     </image>
456                                 </images>
457                             </configuration>
458                             <dependencies>
459                                 <dependency>
460                                     <groupId>io.fabric8</groupId>
461                                     <artifactId>run-java-sh</artifactId>
462                                     <version>1.2.2</version>
463                                 </dependency>
464                             </dependencies>
465                         </plugin>
466                     </plugins>
467                 </pluginManagement>
468             </build>
469         </profile>
470     </profiles>
471
472     <pluginRepositories>
473         <pluginRepository>
474             <id>arturbosch-code-analysis</id>
475             <name>arturbosch-code-analysis (for detekt)</name>
476             <url>https://dl.bintray.com/arturbosch/code-analysis/</url>
477             <layout>default</layout>
478             <releases>
479                 <enabled>true</enabled>
480                 <updatePolicy>never</updatePolicy>
481             </releases>
482             <snapshots>
483                 <enabled>false</enabled>
484                 <updatePolicy>never</updatePolicy>
485             </snapshots>
486         </pluginRepository>
487     </pluginRepositories>
488
489     <repositories>
490         <repository>
491             <id>40_openecomp-release</id>
492             <name>40_openecomp-release</name>
493             <url>https://nexus.onap.org/content/repositories/releases/</url>
494             <releases>
495                 <enabled>true</enabled>
496                 <updatePolicy>daily</updatePolicy>
497             </releases>
498             <snapshots>
499                 <enabled>false</enabled>
500             </snapshots>
501         </repository>
502     </repositories>
503
504     <dependencyManagement>
505         <dependencies>
506             <dependency>
507                 <groupId>com.google.guava</groupId>
508                 <artifactId>guava</artifactId>
509                 <version>25.0-jre</version>
510                 <exclusions>
511                     <exclusion>
512                         <groupId>com.google.code.findbugs</groupId>
513                         <artifactId>jsr305</artifactId>
514                     </exclusion>
515                 </exclusions>
516             </dependency>
517             <dependency>
518                 <groupId>org.jetbrains.kotlin</groupId>
519                 <artifactId>kotlin-stdlib-jdk8</artifactId>
520                 <version>${kotlin.version}</version>
521             </dependency>
522             <dependency>
523                 <groupId>org.jetbrains.kotlin</groupId>
524                 <artifactId>kotlin-reflect</artifactId>
525                 <version>${kotlin.version}</version>
526             </dependency>
527             <dependency>
528                 <groupId>io.arrow-kt</groupId>
529                 <artifactId>arrow-core</artifactId>
530                 <version>${arrow.version}</version>
531                 <exclusions>
532                     <exclusion>
533                         <groupId>org.jetbrains.kotlin</groupId>
534                         <artifactId>kotlin-stdlib</artifactId>
535                     </exclusion>
536                     <exclusion>
537                         <groupId>org.jetbrains.kotlin</groupId>
538                         <artifactId>kotlin-stdlib-jdk7</artifactId>
539                     </exclusion>
540                 </exclusions>
541             </dependency>
542             <dependency>
543                 <groupId>io.arrow-kt</groupId>
544                 <artifactId>arrow-syntax</artifactId>
545                 <version>${arrow.version}</version>
546             </dependency>
547             <dependency>
548                 <groupId>io.arrow-kt</groupId>
549                 <artifactId>arrow-instances-core</artifactId>
550                 <version>${arrow.version}</version>
551             </dependency>
552             <dependency>
553                 <groupId>io.arrow-kt</groupId>
554                 <artifactId>arrow-instances-data</artifactId>
555                 <version>${arrow.version}</version>
556             </dependency>
557             <dependency>
558                 <groupId>io.arrow-kt</groupId>
559                 <artifactId>arrow-effects</artifactId>
560                 <version>${arrow.version}</version>
561             </dependency>
562             <dependency>
563                 <groupId>ch.qos.logback</groupId>
564                 <artifactId>logback-classic</artifactId>
565                 <version>1.3.0-alpha4</version>
566                 <scope>runtime</scope>
567             </dependency>
568             <dependency>
569                 <groupId>org.slf4j</groupId>
570                 <artifactId>slf4j-api</artifactId>
571                 <version>1.8.0-beta1</version>
572             </dependency>
573             <dependency>
574                 <groupId>io.projectreactor</groupId>
575                 <artifactId>reactor-bom</artifactId>
576                 <version>Bismuth-SR10</version>
577                 <type>pom</type>
578                 <scope>import</scope>
579             </dependency>
580             <dependency>
581                 <groupId>io.netty</groupId>
582                 <artifactId>netty-tcnative-boringssl-static</artifactId>
583                 <version>2.0.8.Final</version>
584                 <classifier>${os.detected.classifier}</classifier>
585             </dependency>
586             <dependency>
587                 <groupId>com.google.protobuf</groupId>
588                 <artifactId>protobuf-java</artifactId>
589                 <version>${protobuf.version}</version>
590             </dependency>
591             <dependency>
592                 <groupId>com.google.protobuf</groupId>
593                 <artifactId>protobuf-java-util</artifactId>
594                 <version>${protobuf.version}</version>
595             </dependency>
596             <dependency>
597                 <groupId>commons-cli</groupId>
598                 <artifactId>commons-cli</artifactId>
599                 <version>1.4</version>
600             </dependency>
601             <dependency>
602                 <groupId>javax.json</groupId>
603                 <artifactId>javax.json-api</artifactId>
604                 <version>1.1.2</version>
605             </dependency>
606             <dependency>
607                 <groupId>org.glassfish</groupId>
608                 <artifactId>javax.json</artifactId>
609                 <version>1.1.2</version>
610             </dependency>
611             <dependency>
612                 <groupId>io.ratpack</groupId>
613                 <artifactId>ratpack-core</artifactId>
614                 <version>1.5.4</version>
615             </dependency>
616             <dependency>
617                 <groupId>io.micrometer</groupId>
618                 <artifactId>micrometer-registry-jmx</artifactId>
619                 <version>1.0.5</version>
620             </dependency>
621
622             <!-- Test dependencies -->
623
624             <dependency>
625                 <groupId>org.jetbrains.spek</groupId>
626                 <artifactId>spek-api</artifactId>
627                 <version>${spek.version}</version>
628                 <scope>test</scope>
629             </dependency>
630             <dependency>
631                 <groupId>org.jetbrains.spek</groupId>
632                 <artifactId>spek-junit-platform-engine</artifactId>
633                 <version>${spek.version}</version>
634                 <scope>test</scope>
635             </dependency>
636             <dependency>
637                 <groupId>org.assertj</groupId>
638                 <artifactId>assertj-core</artifactId>
639                 <version>3.9.1</version>
640                 <scope>test</scope>
641             </dependency>
642             <dependency>
643                 <groupId>com.nhaarman</groupId>
644                 <artifactId>mockito-kotlin</artifactId>
645                 <version>1.5.0</version>
646                 <scope>test</scope>
647                 <exclusions>
648                     <exclusion>
649                         <groupId>org.mockito</groupId>
650                         <artifactId>mockito-core</artifactId>
651                     </exclusion>
652                 </exclusions>
653             </dependency>
654             <dependency>
655                 <groupId>org.mockito</groupId>
656                 <artifactId>mockito-core</artifactId>
657                 <version>2.18.3</version>
658                 <scope>test</scope>
659             </dependency>
660             <dependency>
661                 <groupId>org.jetbrains.kotlin</groupId>
662                 <artifactId>kotlin-test</artifactId>
663                 <version>${kotlin.version}</version>
664                 <scope>test</scope>
665             </dependency>
666             <dependency>
667                 <groupId>io.projectreactor</groupId>
668                 <artifactId>reactor-test</artifactId>
669                 <version>3.1.7.RELEASE</version>
670                 <scope>test</scope>
671             </dependency>
672         </dependencies>
673     </dependencyManagement>
674 </project>
675
676