blob: f478df3c0603c4b6194ae7891427d0a2cccec118 [file] [log] [blame]
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ dcaegen2-collectors-veshv
5 ~ ================================================================================
fkrzywkae74c9e12018-06-06 10:43:53 +02006 ~ Copyright (C) 2018 NOKIA
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +02007 ~ ================================================================================
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"
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020022 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020023
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020024 <modelVersion>4.0.0</modelVersion>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020025
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020026 <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>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020032
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020033 <groupId>org.onap.dcaegen2.collectors.veshv</groupId>
34 <artifactId>ves-hv-collector</artifactId>
35 <version>1.0.0-SNAPSHOT</version>
36 <name>dcaegen2-collectors-veshv</name>
37 <description>VES HighVolume Collector</description>
38 <packaging>pom</packaging>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020039
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +020040 <modules>
41 <module>hv-collector-analysis</module>
42 <module>hv-collector-client-simulator</module>
43 <module>hv-collector-core</module>
44 <module>hv-collector-coverage</module>
45 <module>hv-collector-ct</module>
46 <module>hv-collector-dcae-app-simulator</module>
47 <module>hv-collector-domain</module>
48 <module>hv-collector-main</module>
49 <module>hv-collector-utils</module>
50 </modules>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020051
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020052 <properties>
53 <kotlin.version>1.2.41</kotlin.version>
54 <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
55 <build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020056
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020057 <!-- Protocol buffers -->
58 <protobuf.version>3.5.1</protobuf.version>
59 <protoc-jar-maven-plugin.version>3.5.1.1</protoc-jar-maven-plugin.version>
60 <protobuf-generated-files.directory>${project.build.directory}/generated-sources/proto/main/java/
61 </protobuf-generated-files.directory>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020062
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020063 <!-- Testing and code analysis -->
64 <junit-platform.version>1.2.0-RC1</junit-platform.version>
65 <junit-jupiter.version>5.2.0-RC1</junit-jupiter.version>
66 <spek.version>1.1.5</spek.version>
67 <maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version>
68 <failIfMissingUnitTests>true</failIfMissingUnitTests>
69 <failIfMissingComponentTests>false</failIfMissingComponentTests>
70 <skipAnalysis>true</skipAnalysis>
fkrzywka4b8cfb32018-06-01 12:45:22 +020071
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020072 <!-- Docker -->
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +020073 <skipDocker>true</skipDocker> <!-- TODO: unskip docker -->
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020074 <docker-image.name>ves-hv-collector/${project.artifactId}</docker-image.name>
75 <docker-image.namespace>onap</docker-image.namespace>
76 </properties>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020077
78
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020079 <build>
80 <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
81 <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
82 <resources>
83 <resource>
84 <directory>${project.basedir}/src/main/resources</directory>
85 </resource>
86 </resources>
87 <pluginManagement>
88 <plugins>
89 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-resources-plugin</artifactId>
92 <version>3.1.0</version>
93 <configuration>
94 <encoding>UTF-8</encoding>
95 </configuration>
96 </plugin>
97 <plugin>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +020098 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-deploy-plugin</artifactId>
100 <configuration>
101 <skip>true</skip>
102 </configuration>
103 </plugin>
104 <plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200105 <artifactId>kotlin-maven-plugin</artifactId>
106 <groupId>org.jetbrains.kotlin</groupId>
107 <version>${kotlin.version}</version>
108 <configuration>
109 <jvmTarget>1.8</jvmTarget>
110 </configuration>
111 <executions>
112 <execution>
113 <id>compile</id>
114 <goals>
115 <goal>compile</goal>
116 </goals>
117 <configuration>
118 <sourceDirs>
119 <source>${project.build.sourceDirectory}</source>
120 <source>${project.build.directory}/generated-sources/annotations</source>
121 </sourceDirs>
122 </configuration>
123 </execution>
124 <execution>
125 <id>test-compile</id>
126 <goals>
127 <goal>test-compile</goal>
128 </goals>
129 <configuration>
130 <sourceDirs>
131 <source>${project.build.testSourceDirectory}</source>
132 </sourceDirs>
133 </configuration>
134 </execution>
135 </executions>
136 </plugin>
137 <plugin>
138 <groupId>com.github.os72</groupId>
139 <artifactId>protoc-jar-maven-plugin</artifactId>
140 <version>${protoc-jar-maven-plugin.version}</version>
141 </plugin>
142 <plugin>
143 <groupId>org.codehaus.mojo</groupId>
144 <artifactId>build-helper-maven-plugin</artifactId>
145 <version>${build-helper-maven-plugin.version}</version>
146 <executions>
147 <execution>
148 <id>add-source</id>
149 <phase>generate-sources</phase>
150 <goals>
151 <goal>add-source</goal>
152 </goals>
153 <configuration>
154 <sources>
155 <source>${protobuf-generated-files.directory}</source>
156 </sources>
157 </configuration>
158 </execution>
159 </executions>
160 </plugin>
161 <plugin>
162 <groupId>org.apache.maven.plugins</groupId>
163 <artifactId>maven-compiler-plugin</artifactId>
164 <version>${maven-compiler-plugin.version}</version>
165 <configuration>
166 <source>8</source>
167 <target>8</target>
168 <encoding>UTF-8</encoding>
169 <showWarnings>true</showWarnings>
170 <showDeprecation>true</showDeprecation>
171 <failOnWarning>false</failOnWarning>
172 </configuration>
173 <dependencies>
174 <dependency>
175 <groupId>org.ow2.asm</groupId>
176 <artifactId>asm</artifactId>
177 <version>6.1.1</version> <!-- Use newer version of ASM -->
178 </dependency>
179 </dependencies>
180 </plugin>
181 <!--
182 Due to a memory leak in Surefire 2.20 and issues running on Java 9, the junit-platform-surefire-provider
183 currently only works with Surefire 2.19.1.
184 For updates see https://junit.org/junit5/docs/current/user-guide/#running-tests-build-maven
185 -->
186 <plugin>
187 <artifactId>maven-surefire-plugin</artifactId>
188 <groupId>org.apache.maven.plugins</groupId>
189 <version>${maven-surefire-plugin.version}</version>
190 <executions>
191 <execution>
192 <id>default-test</id>
193 <goals>
194 <goal>test</goal>
195 </goals>
196 <configuration>
197 <failIfNoTests>${failIfMissingUnitTests}</failIfNoTests>
198 <forkCount>1</forkCount>
199 <includes>
200 <include>**/*Test.*</include>
201 </includes>
202 <!--<argLine>&#45;&#45;add-modules org.junit.jupiter.api,reactor.test,assertj.core</argLine>-->
203 </configuration>
204 </execution>
205 <execution>
206 <id>component-tests</id>
207 <phase>verify</phase>
208 <goals>
209 <goal>test</goal>
210 </goals>
211 <configuration>
212 <failIfNoTests>${failIfMissingComponentTests}</failIfNoTests>
213 <forkCount>1</forkCount>
214 <includes>
215 <include>**/*Specification.*</include>
216 </includes>
217 </configuration>
218 </execution>
219 </executions>
220 <dependencies>
221 <dependency>
222 <groupId>org.apache.commons</groupId>
223 <artifactId>commons-lang3</artifactId>
224 <version>3.7</version>
225 </dependency>
226 <dependency>
227 <groupId>org.junit.platform</groupId>
228 <artifactId>junit-platform-surefire-provider</artifactId>
229 <version>${junit-platform.version}</version>
230 <scope>runtime</scope>
231 </dependency>
232 <dependency>
233 <groupId>org.jetbrains.spek</groupId>
234 <artifactId>spek-junit-platform-engine</artifactId>
235 <version>${spek.version}</version>
236 <scope>runtime</scope>
237 </dependency>
238 </dependencies>
239 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200240 </plugins>
241 </pluginManagement>
242 <extensions>
243 <extension>
244 <groupId>kr.motd.maven</groupId>
245 <artifactId>os-maven-plugin</artifactId>
246 <version>1.6.0</version>
247 </extension>
248 </extensions>
249 </build>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200250
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200251 <profiles>
252 <profile>
253 <id>analysis</id>
254 <activation>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200255 <activeByDefault>true</activeByDefault>
256 </activation>
257 <build>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200258 <plugins>
259 <plugin>
260 <groupId>org.jacoco</groupId>
261 <artifactId>jacoco-maven-plugin</artifactId>
262 <version>0.8.1</version>
263 <executions>
264 <execution>
265 <id>default-prepare-agent</id>
266 <goals>
267 <goal>prepare-agent</goal>
268 </goals>
269 </execution>
270 <execution>
271 <id>default-prepare-agent-integration</id>
272 <goals>
273 <goal>prepare-agent-integration</goal>
274 </goals>
275 </execution>
276 </executions>
277 </plugin>
278
279 <plugin>
280 <groupId>org.apache.maven.plugins</groupId>
281 <artifactId>maven-antrun-plugin</artifactId>
282 <version>1.8</version>
283 <executions>
284 <execution>
285 <!-- This can be run separately with mvn antrun:run@detekt -->
286 <id>detekt</id>
287 <phase>verify</phase>
288 <configuration>
289 <target name="detekt" unless="${skipAnalysis}">
290 <java taskname="detekt" dir="${basedir}"
291 fork="true"
292 failonerror="true"
293 classname="io.gitlab.arturbosch.detekt.cli.Main"
294 classpathref="maven.plugin.classpath">
295 <arg value="--input"/>
296 <arg value="${basedir}/src/main/kotlin"/>
297 <arg value="--config-resource"/>
298 <arg value="onap-detekt-config.yml"/>
299 <arg value="--filters"/>
300 <arg value=".*/target/.*,.*/resources/.*"/>
301 <arg value="--output"/>
302 <arg value="${basedir}/target/reports"/>
303 <arg value="--output-name"/>
304 <arg value="detekt-report"/>
305 <arg value="--baseline"/>
306 <arg value="${basedir}/target/reports/baseline.xml"/>
307 </java>
308 </target>
309 </configuration>
310 <goals>
311 <goal>run</goal>
312 </goals>
313 </execution>
314 </executions>
315 <dependencies>
316 <dependency>
317 <groupId>io.gitlab.arturbosch.detekt</groupId>
318 <artifactId>detekt-cli</artifactId>
319 <version>1.0.0.RC7</version>
320 </dependency>
321 <dependency>
322 <groupId>${project.groupId}</groupId>
323 <artifactId>hv-collector-analysis</artifactId>
324 <version>${project.version}</version>
325 </dependency>
326 </dependencies>
327 </plugin>
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +0200328
329 <plugin>
330 <artifactId>maven-checkstyle-plugin</artifactId>
331 <version>3.0.0</version>
332 <dependencies>
333 <dependency>
334 <groupId>org.onap.oparent</groupId>
335 <artifactId>checkstyle</artifactId>
336 <version>1.1.1</version>
337 </dependency>
338 </dependencies>
339 <executions>
340 <execution>
341 <id>onap-license</id>
342 <goals>
343 <goal>check</goal>
344 </goals>
345 <phase>process-sources</phase>
346 <configuration>
347 <configLocation>onap-checkstyle/check-license.xml</configLocation>
348 <includeResources>false</includeResources>
349 <includeTestSourceDirectory>true</includeTestSourceDirectory>
350 <includeTestResources>false</includeTestResources>
351 <includes>**\/*.kt</includes>
352 <consoleOutput>true</consoleOutput>
353 <!--<failOnViolation>false</failOnViolation>-->
354 </configuration>
355 </execution>
356 </executions>
357 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200358 </plugins>
359 </build>
360 </profile>
361 <profile>
362 <id>docker</id>
363 <activation>
364 <property>
365 <name>!skipDocker</name>
366 </property>
367 </activation>
368 <properties>
369 <os.detected.name>linux</os.detected.name>
370 <os.detected.arch>x86_64</os.detected.arch>
371 <os.detected.classifier>${os.detected.name}-${os.detected.arch}</os.detected.classifier>
372 </properties>
373 <build>
374 <pluginManagement>
375 <plugins>
376 <plugin>
377 <groupId>io.fabric8</groupId>
378 <artifactId>docker-maven-plugin</artifactId>
379 <version>0.26.0</version>
380 <executions>
381 <execution>
382 <id>build-docker-image</id>
383 <phase>pre-integration-test</phase>
384 <goals>
385 <goal>build</goal>
386 </goals>
387 </execution>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +0200388 <execution>
389 <id>push-docker-image</id>
390 <phase>deploy</phase>
391 <goals>
392 <goal>push</goal>
393 </goals>
394 </execution>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200395 </executions>
396 <configuration>
397 <verbose>true</verbose>
398 <imagePullPolicy>IfNotPresent</imagePullPolicy>
399 <images>
400 <image>
401 <alias>${project.artifactId}</alias>
402 <name>${docker-image.namespace}/${docker-image.name}</name>
403 <build>
404 <dockerFileDir>${project.basedir}</dockerFileDir>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200405 </build>
406 </image>
407 </images>
408 </configuration>
409 </plugin>
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +0200410 <plugin>
411 <groupId>org.apache.maven.plugins</groupId>
412 <artifactId>maven-dependency-plugin</artifactId>
413 <version>3.1.1</version>
414 <executions>
415 <execution>
416 <id>copy-internal-deps</id>
417 <phase>package</phase>
418 <goals>
419 <goal>copy-dependencies</goal>
420 </goals>
421 <configuration>
422 <outputDirectory>${project.build.directory}/libs/internal</outputDirectory>
423 <includeGroupIds>${project.parent.groupId}</includeGroupIds>
424 <includeScope>runtime</includeScope>
425 </configuration>
426 </execution>
427 <execution>
428 <id>copy-external-deps</id>
429 <phase>package</phase>
430 <goals>
431 <goal>copy-dependencies</goal>
432 </goals>
433 <configuration>
434 <outputDirectory>${project.build.directory}/libs/external</outputDirectory>
435 <excludeGroupIds>${project.parent.groupId}</excludeGroupIds>
436 <includeScope>runtime</includeScope>
437 </configuration>
438 </execution>
439 </executions>
440 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200441 </plugins>
442 </pluginManagement>
443 </build>
444 </profile>
445 </profiles>
446
447 <reporting>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200448 <plugins>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200449 <plugin>
450 <groupId>org.jacoco</groupId>
451 <artifactId>jacoco-maven-plugin</artifactId>
452 <reportSets>
453 <reportSet>
454 <reports>
455 <report>report</report>
456 </reports>
457 </reportSet>
458 </reportSets>
459 </plugin>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200460 </plugins>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200461 </reporting>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200462
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200463 <pluginRepositories>
464 <pluginRepository>
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +0200465 <id>40_openecomp-release</id>
466 <name>40_openecomp-release</name>
467 <url>https://nexus.onap.org/content/repositories/releases/</url>
468 <releases>
469 <enabled>true</enabled>
470 <updatePolicy>daily</updatePolicy>
471 </releases>
472 <snapshots>
473 <enabled>false</enabled>
474 </snapshots>
475 </pluginRepository>
476
477 <pluginRepository>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200478 <id>arturbosch-code-analysis</id>
479 <name>arturbosch-code-analysis (for detekt)</name>
480 <url>https://dl.bintray.com/arturbosch/code-analysis/</url>
481 <layout>default</layout>
482 <releases>
483 <enabled>true</enabled>
484 <updatePolicy>never</updatePolicy>
485 </releases>
486 <snapshots>
487 <enabled>false</enabled>
488 <updatePolicy>never</updatePolicy>
489 </snapshots>
490 </pluginRepository>
491 </pluginRepositories>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200492
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +0200493 <repositories>
494 <repository>
495 <id>40_openecomp-release</id>
496 <name>40_openecomp-release</name>
497 <url>https://nexus.onap.org/content/repositories/releases/</url>
498 <releases>
499 <enabled>true</enabled>
500 <updatePolicy>daily</updatePolicy>
501 </releases>
502 <snapshots>
503 <enabled>false</enabled>
504 </snapshots>
505 </repository>
506 </repositories>
507
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200508 <dependencyManagement>
509 <dependencies>
510 <dependency>
511 <groupId>com.google.guava</groupId>
512 <artifactId>guava</artifactId>
513 <version>25.0-jre</version>
514 <exclusions>
515 <exclusion>
516 <groupId>com.google.code.findbugs</groupId>
517 <artifactId>jsr305</artifactId>
518 </exclusion>
519 </exclusions>
520 </dependency>
521 <dependency>
522 <groupId>org.jetbrains.kotlin</groupId>
523 <artifactId>kotlin-stdlib-jdk8</artifactId>
524 <version>${kotlin.version}</version>
525 </dependency>
526 <dependency>
527 <groupId>org.jetbrains.kotlin</groupId>
528 <artifactId>kotlin-reflect</artifactId>
529 <version>${kotlin.version}</version>
530 </dependency>
531 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200532 <groupId>io.arrow-kt</groupId>
533 <artifactId>arrow-core</artifactId>
534 <version>0.7.2</version>
535 </dependency>
536 <dependency>
537 <groupId>io.arrow-kt</groupId>
538 <artifactId>arrow-syntax</artifactId>
539 <version>0.7.2</version>
540 </dependency>
541 <dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200542 <groupId>ch.qos.logback</groupId>
543 <artifactId>logback-classic</artifactId>
544 <version>1.3.0-alpha4</version>
545 <scope>runtime</scope>
546 </dependency>
547 <dependency>
548 <groupId>org.slf4j</groupId>
549 <artifactId>slf4j-api</artifactId>
550 <version>1.8.0-beta1</version>
551 </dependency>
552 <dependency>
553 <groupId>io.projectreactor</groupId>
554 <artifactId>reactor-bom</artifactId>
555 <version>Bismuth-SR8</version>
556 <type>pom</type>
557 <scope>import</scope>
558 </dependency>
559 <dependency>
560 <groupId>io.netty</groupId>
561 <artifactId>netty-tcnative-boringssl-static</artifactId>
562 <version>2.0.8.Final</version>
563 <classifier>${os.detected.classifier}</classifier>
564 </dependency>
565 <dependency>
566 <groupId>com.google.protobuf</groupId>
567 <artifactId>protobuf-java</artifactId>
568 <version>${protobuf.version}</version>
569 </dependency>
570 <dependency>
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +0200571 <groupId>com.google.protobuf</groupId>
572 <artifactId>protobuf-java-util</artifactId>
573 <version>${protobuf.version}</version>
574 </dependency>
575 <dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200576 <groupId>commons-cli</groupId>
577 <artifactId>commons-cli</artifactId>
578 <version>1.4</version>
579 </dependency>
580 <dependency>
581 <groupId>javax.json</groupId>
582 <artifactId>javax.json-api</artifactId>
583 <version>1.1.2</version>
584 </dependency>
585 <dependency>
586 <groupId>org.glassfish</groupId>
587 <artifactId>javax.json</artifactId>
588 <version>1.1.2</version>
589 </dependency>
Piotr Jaszczyk39ceb732018-06-12 12:16:19 +0200590 <dependency>
591 <groupId>io.ratpack</groupId>
592 <artifactId>ratpack-core</artifactId>
593 <version>1.5.4</version>
594 </dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200595 <dependency>
596 <groupId>io.micrometer</groupId>
597 <artifactId>micrometer-registry-jmx</artifactId>
598 <version>1.0.5</version>
599 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200600
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200601 <!-- Test dependencies -->
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200602
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200603 <dependency>
604 <groupId>org.jetbrains.spek</groupId>
605 <artifactId>spek-api</artifactId>
606 <version>${spek.version}</version>
607 <scope>test</scope>
608 </dependency>
609 <dependency>
610 <groupId>org.jetbrains.spek</groupId>
611 <artifactId>spek-junit-platform-engine</artifactId>
612 <version>${spek.version}</version>
613 <scope>test</scope>
614 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200615
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200616 <dependency>
617 <groupId>org.assertj</groupId>
618 <artifactId>assertj-core</artifactId>
619 <version>3.9.1</version>
620 <scope>test</scope>
621 </dependency>
622 <dependency>
623 <groupId>com.nhaarman</groupId>
624 <artifactId>mockito-kotlin</artifactId>
625 <version>1.5.0</version>
626 <scope>test</scope>
627 <exclusions>
628 <exclusion>
629 <groupId>org.mockito</groupId>
630 <artifactId>mockito-core</artifactId>
631 </exclusion>
632 </exclusions>
633 </dependency>
634 <dependency>
635 <groupId>org.mockito</groupId>
636 <artifactId>mockito-core</artifactId>
637 <version>2.18.3</version>
638 <scope>test</scope>
639 </dependency>
640 <dependency>
641 <groupId>org.jetbrains.kotlin</groupId>
642 <artifactId>kotlin-test</artifactId>
643 <version>${kotlin.version}</version>
644 <scope>test</scope>
645 </dependency>
646 <dependency>
647 <groupId>io.projectreactor</groupId>
648 <artifactId>reactor-test</artifactId>
649 <version>3.1.7.RELEASE</version>
650 <scope>test</scope>
651 </dependency>
652 </dependencies>
653 </dependencyManagement>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200654</project>
655
656