blob: 7504d4f2d34cfdb1015d32d74bbb10478e1fd58c [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
Filip Krzywka88726d92018-08-10 08:26:42 +020033 <parent>
34 <groupId>org.onap.oparent</groupId>
35 <artifactId>oparent</artifactId>
36 <version>0.1.1</version>
37 <relativePath/>
38 </parent>
39
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020040 <groupId>org.onap.dcaegen2.collectors.veshv</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>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020046
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +020047 <modules>
48 <module>hv-collector-analysis</module>
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +020049 <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>
Jakub Dudyczdd827e22018-08-07 14:18:37 +020054 <module>hv-collector-health-check</module>
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +020055 <module>hv-collector-main</module>
Jakub Dudyczdd827e22018-08-07 14:18:37 +020056 <module>hv-collector-test-utils</module>
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +020057 <module>hv-collector-utils</module>
kjaniak3bdd4172018-07-12 10:57:58 +020058 <module>hv-collector-ves-message-generator</module>
fkrzywka2a8d4e32018-07-16 08:17:29 +020059 <module>hv-collector-xnf-simulator</module>
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +020060 </modules>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020061
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020062 <properties>
Jakub Dudycz7ff62212018-08-06 13:56:40 +020063 <kotlin.version>1.2.60</kotlin.version>
Piotr Jaszczyk67689402018-06-14 09:48:46 +020064 <arrow.version>0.7.2</arrow.version>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020065 <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
66 <build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020067
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020068 <!-- Protocol buffers -->
69 <protobuf.version>3.5.1</protobuf.version>
70 <protoc-jar-maven-plugin.version>3.5.1.1</protoc-jar-maven-plugin.version>
71 <protobuf-generated-files.directory>${project.build.directory}/generated-sources/proto/main/java/
72 </protobuf-generated-files.directory>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020073
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020074 <!-- Testing and code analysis -->
75 <junit-platform.version>1.2.0-RC1</junit-platform.version>
76 <junit-jupiter.version>5.2.0-RC1</junit-jupiter.version>
77 <spek.version>1.1.5</spek.version>
Filip Krzywka88726d92018-08-10 08:26:42 +020078 <maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>
79 <failIfMissingUnitTests>false</failIfMissingUnitTests>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020080 <failIfMissingComponentTests>false</failIfMissingComponentTests>
81 <skipAnalysis>true</skipAnalysis>
fkrzywka4b8cfb32018-06-01 12:45:22 +020082
Piotr Jaszczyk69f43f22018-06-25 09:59:01 +020083 <!-- Docker -->
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +020084 <skipDocker>false</skipDocker>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +020085 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
Piotr Jaszczyk69f43f22018-06-25 09:59:01 +020086 <docker-image.registry>${onap.nexus.dockerregistry.daily}</docker-image.registry>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020087 <docker-image.namespace>onap</docker-image.namespace>
Filip Krzywka88726d92018-08-10 08:26:42 +020088 <docker-image.name>${project.groupId}.${project.artifactId}</docker-image.name>
89 <docker.http_proxy></docker.http_proxy>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020090 </properties>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020091
92
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020093 <build>
94 <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
95 <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
96 <resources>
97 <resource>
98 <directory>${project.basedir}/src/main/resources</directory>
99 </resource>
100 </resources>
101 <pluginManagement>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-resources-plugin</artifactId>
106 <version>3.1.0</version>
107 <configuration>
108 <encoding>UTF-8</encoding>
109 </configuration>
110 </plugin>
111 <plugin>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +0200112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-deploy-plugin</artifactId>
114 <configuration>
115 <skip>true</skip>
116 </configuration>
117 </plugin>
118 <plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200119 <artifactId>kotlin-maven-plugin</artifactId>
120 <groupId>org.jetbrains.kotlin</groupId>
121 <version>${kotlin.version}</version>
122 <configuration>
123 <jvmTarget>1.8</jvmTarget>
124 </configuration>
125 <executions>
126 <execution>
127 <id>compile</id>
128 <goals>
129 <goal>compile</goal>
130 </goals>
131 <configuration>
132 <sourceDirs>
133 <source>${project.build.sourceDirectory}</source>
134 <source>${project.build.directory}/generated-sources/annotations</source>
135 </sourceDirs>
136 </configuration>
137 </execution>
138 <execution>
139 <id>test-compile</id>
140 <goals>
141 <goal>test-compile</goal>
142 </goals>
143 <configuration>
144 <sourceDirs>
145 <source>${project.build.testSourceDirectory}</source>
146 </sourceDirs>
147 </configuration>
148 </execution>
149 </executions>
150 </plugin>
151 <plugin>
152 <groupId>com.github.os72</groupId>
153 <artifactId>protoc-jar-maven-plugin</artifactId>
154 <version>${protoc-jar-maven-plugin.version}</version>
155 </plugin>
156 <plugin>
157 <groupId>org.codehaus.mojo</groupId>
158 <artifactId>build-helper-maven-plugin</artifactId>
159 <version>${build-helper-maven-plugin.version}</version>
160 <executions>
161 <execution>
162 <id>add-source</id>
163 <phase>generate-sources</phase>
164 <goals>
165 <goal>add-source</goal>
166 </goals>
167 <configuration>
168 <sources>
169 <source>${protobuf-generated-files.directory}</source>
170 </sources>
171 </configuration>
172 </execution>
173 </executions>
174 </plugin>
175 <plugin>
176 <groupId>org.apache.maven.plugins</groupId>
177 <artifactId>maven-compiler-plugin</artifactId>
178 <version>${maven-compiler-plugin.version}</version>
179 <configuration>
180 <source>8</source>
181 <target>8</target>
182 <encoding>UTF-8</encoding>
183 <showWarnings>true</showWarnings>
184 <showDeprecation>true</showDeprecation>
185 <failOnWarning>false</failOnWarning>
186 </configuration>
187 <dependencies>
188 <dependency>
189 <groupId>org.ow2.asm</groupId>
190 <artifactId>asm</artifactId>
191 <version>6.1.1</version> <!-- Use newer version of ASM -->
192 </dependency>
193 </dependencies>
194 </plugin>
195 <!--
196 Due to a memory leak in Surefire 2.20 and issues running on Java 9, the junit-platform-surefire-provider
197 currently only works with Surefire 2.19.1.
198 For updates see https://junit.org/junit5/docs/current/user-guide/#running-tests-build-maven
199 -->
200 <plugin>
201 <artifactId>maven-surefire-plugin</artifactId>
202 <groupId>org.apache.maven.plugins</groupId>
203 <version>${maven-surefire-plugin.version}</version>
Filip Krzywka88726d92018-08-10 08:26:42 +0200204 <configuration>
205 <failIfNoTests>${failIfMissingUnitTests}</failIfNoTests>
206 <forkCount>1</forkCount>
207 <includes>
208 <include>**/*Test.*</include>
209 </includes>
210 </configuration>
211 <dependencies>
212 <dependency>
213 <groupId>org.apache.commons</groupId>
214 <artifactId>commons-lang3</artifactId>
215 <version>3.7</version>
216 </dependency>
217 <dependency>
218 <groupId>org.junit.platform</groupId>
219 <artifactId>junit-platform-surefire-provider</artifactId>
220 <version>${junit-platform.version}</version>
221 <scope>runtime</scope>
222 </dependency>
223 <dependency>
224 <groupId>org.jetbrains.spek</groupId>
225 <artifactId>spek-junit-platform-engine</artifactId>
226 <version>${spek.version}</version>
227 <scope>runtime</scope>
228 </dependency>
229 </dependencies>
230 </plugin>
231 <plugin>
232 <groupId>org.apache.maven.plugins</groupId>
233 <artifactId>maven-failsafe-plugin</artifactId>
234 <version>2.22.0</version>
235 <configuration>
236 <failIfNoTests>${failIfMissingComponentTests}</failIfNoTests>
237 <forkCount>1</forkCount>
238 <includes>
239 <include>**/*Specification.*</include>
240 </includes>
241 </configuration>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200242 <dependencies>
243 <dependency>
244 <groupId>org.apache.commons</groupId>
245 <artifactId>commons-lang3</artifactId>
246 <version>3.7</version>
247 </dependency>
248 <dependency>
249 <groupId>org.junit.platform</groupId>
250 <artifactId>junit-platform-surefire-provider</artifactId>
251 <version>${junit-platform.version}</version>
252 <scope>runtime</scope>
253 </dependency>
254 <dependency>
255 <groupId>org.jetbrains.spek</groupId>
256 <artifactId>spek-junit-platform-engine</artifactId>
257 <version>${spek.version}</version>
258 <scope>runtime</scope>
259 </dependency>
260 </dependencies>
261 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200262 </plugins>
263 </pluginManagement>
Filip Krzywka88726d92018-08-10 08:26:42 +0200264 <plugins>
265 <plugin>
266 <artifactId>maven-checkstyle-plugin</artifactId>
267 <version>2.17</version>
268 <dependencies>
269 <dependency>
270 <groupId>org.onap.oparent</groupId>
271 <artifactId>checkstyle</artifactId>
272 <version>1.1.1</version>
273 </dependency>
274 </dependencies>
275 <executions>
276 <execution>
277 <!-- To override oparent configuration different id must be used
278 We need to override it to include .kt files in check. -->
279 <id>check-license-kotlin</id>
280 <goals>
281 <goal>check</goal>
282 </goals>
283 <phase>process-sources</phase>
284 <configuration>
285 <configLocation>onap-checkstyle/check-license.xml</configLocation>
286 <includeResources>false</includeResources>
287 <includeTestSourceDirectory>true</includeTestSourceDirectory>
288 <includeTestResources>false</includeTestResources>
289 <includes>**\/*.kt</includes>
290 <consoleOutput>true</consoleOutput>
291 <!--<failOnViolation>false</failOnViolation>-->
292 </configuration>
293 </execution>
294 </executions>
295 </plugin>
296 <plugin>
297 <groupId>org.apache.maven.plugins</groupId>
298 <artifactId>maven-antrun-plugin</artifactId>
299 <version>1.8</version>
300 <executions>
301 <execution>
302 <!-- This can be run separately with mvn antrun:run@detekt -->
303 <id>detekt</id>
304 <phase>verify</phase>
305 <goals>
306 <goal>run</goal>
307 </goals>
308 <configuration>
309 <target name="detekt" unless="${skipAnalysis}">
310 <java taskname="detekt" dir="${basedir}"
311 fork="true"
312 failonerror="true"
313 classname="io.gitlab.arturbosch.detekt.cli.Main"
314 classpathref="maven.plugin.classpath">
315 <arg value="--input"/>
316 <arg value="${basedir}/src/main/kotlin"/>
317 <arg value="--config-resource"/>
318 <arg value="onap-detekt-config.yml"/>
319 <arg value="--filters"/>
320 <arg value=".*/target/.*,.*/resources/.*"/>
321 <arg value="--output"/>
322 <arg value="${basedir}/target/reports"/>
323 <arg value="--output-name"/>
324 <arg value="detekt-report"/>
325 <arg value="--baseline"/>
326 <arg value="${basedir}/target/reports/baseline.xml"/>
327 </java>
328 </target>
329 </configuration>
330 </execution>
331 </executions>
332 <dependencies>
333 <dependency>
334 <groupId>io.gitlab.arturbosch.detekt</groupId>
335 <artifactId>detekt-cli</artifactId>
336 <version>1.0.0.RC7</version>
337 </dependency>
338 <dependency>
339 <groupId>${project.groupId}</groupId>
340 <artifactId>hv-collector-analysis</artifactId>
341 <version>${project.version}</version>
342 </dependency>
343 </dependencies>
344 </plugin>
345 </plugins>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200346 <extensions>
347 <extension>
348 <groupId>kr.motd.maven</groupId>
349 <artifactId>os-maven-plugin</artifactId>
350 <version>1.6.0</version>
351 </extension>
352 </extensions>
353 </build>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200354
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200355 <profiles>
356 <profile>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200357 <id>docker</id>
358 <activation>
359 <property>
360 <name>!skipDocker</name>
361 </property>
362 </activation>
363 <properties>
364 <os.detected.name>linux</os.detected.name>
365 <os.detected.arch>x86_64</os.detected.arch>
366 <os.detected.classifier>${os.detected.name}-${os.detected.arch}</os.detected.classifier>
367 </properties>
368 <build>
369 <pluginManagement>
370 <plugins>
371 <plugin>
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +0200372 <groupId>org.apache.maven.plugins</groupId>
373 <artifactId>maven-dependency-plugin</artifactId>
374 <version>3.1.1</version>
375 <executions>
376 <execution>
377 <id>docker-copy-internal-deps</id>
378 <phase>package</phase>
379 <goals>
380 <goal>copy-dependencies</goal>
381 </goals>
382 <configuration>
383 <outputDirectory>${project.build.directory}/libs/internal</outputDirectory>
384 <includeGroupIds>${project.parent.groupId}</includeGroupIds>
385 <includeScope>runtime</includeScope>
386 </configuration>
387 </execution>
388 <execution>
389 <id>docker-copy-external-deps</id>
390 <phase>package</phase>
391 <goals>
392 <goal>copy-dependencies</goal>
393 </goals>
394 <configuration>
395 <outputDirectory>${project.build.directory}/libs/external</outputDirectory>
396 <excludeGroupIds>${project.parent.groupId}</excludeGroupIds>
397 <includeScope>runtime</includeScope>
398 </configuration>
399 </execution>
400 </executions>
401 </plugin>
402 <plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200403 <groupId>io.fabric8</groupId>
404 <artifactId>docker-maven-plugin</artifactId>
405 <version>0.26.0</version>
406 <executions>
407 <execution>
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +0200408 <id>docker-build-image</id>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200409 <phase>package</phase>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200410 <goals>
411 <goal>build</goal>
412 </goals>
413 </execution>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +0200414 <execution>
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +0200415 <id>docker-push-image</id>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +0200416 <phase>deploy</phase>
417 <goals>
418 <goal>push</goal>
419 </goals>
420 </execution>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200421 </executions>
422 <configuration>
423 <verbose>true</verbose>
424 <imagePullPolicy>IfNotPresent</imagePullPolicy>
425 <images>
426 <image>
427 <alias>${project.artifactId}</alias>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200428 <name>${docker-image.namespace}/${docker-image.name}
Filip Krzywka88726d92018-08-10 08:26:42 +0200429 </name>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200430 <registry>${docker-image.registry}</registry>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200431 <build>
Piotr Jaszczyka8d82772018-08-03 12:07:28 +0200432 <!--
fkrzywkad76905b2018-07-30 12:55:03 +0200433 <args>
434 <http_proxy>${docker.http_proxy}</http_proxy>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200435 <https_proxy>${docker.http_proxy}</https_proxy>
fkrzywkad76905b2018-07-30 12:55:03 +0200436 </args>
Piotr Jaszczyka8d82772018-08-03 12:07:28 +0200437 -->
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200438 <dockerFileDir>${project.basedir}</dockerFileDir>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200439 <tags>
440 <tag>${project.version}-SNAPSHOT-${maven.build.timestamp}Z</tag>
441 <tag>${project.version}</tag>
442 <tag>latest</tag>
443 </tags>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200444 </build>
445 </image>
446 </images>
447 </configuration>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200448 <dependencies>
449 <dependency>
450 <groupId>io.fabric8</groupId>
451 <artifactId>run-java-sh</artifactId>
452 <version>1.2.2</version>
453 </dependency>
454 </dependencies>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200455 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200456 </plugins>
457 </pluginManagement>
458 </build>
459 </profile>
460 </profiles>
461
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200462 <pluginRepositories>
463 <pluginRepository>
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +0200464 <id>40_openecomp-release</id>
465 <name>40_openecomp-release</name>
466 <url>https://nexus.onap.org/content/repositories/releases/</url>
467 <releases>
468 <enabled>true</enabled>
469 <updatePolicy>daily</updatePolicy>
470 </releases>
471 <snapshots>
472 <enabled>false</enabled>
473 </snapshots>
474 </pluginRepository>
475
476 <pluginRepository>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200477 <id>arturbosch-code-analysis</id>
478 <name>arturbosch-code-analysis (for detekt)</name>
479 <url>https://dl.bintray.com/arturbosch/code-analysis/</url>
480 <layout>default</layout>
481 <releases>
482 <enabled>true</enabled>
483 <updatePolicy>never</updatePolicy>
484 </releases>
485 <snapshots>
486 <enabled>false</enabled>
487 <updatePolicy>never</updatePolicy>
488 </snapshots>
489 </pluginRepository>
490 </pluginRepositories>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200491
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +0200492 <repositories>
493 <repository>
494 <id>40_openecomp-release</id>
495 <name>40_openecomp-release</name>
496 <url>https://nexus.onap.org/content/repositories/releases/</url>
497 <releases>
498 <enabled>true</enabled>
499 <updatePolicy>daily</updatePolicy>
500 </releases>
501 <snapshots>
502 <enabled>false</enabled>
503 </snapshots>
504 </repository>
505 </repositories>
506
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200507 <dependencyManagement>
508 <dependencies>
509 <dependency>
510 <groupId>com.google.guava</groupId>
511 <artifactId>guava</artifactId>
512 <version>25.0-jre</version>
513 <exclusions>
514 <exclusion>
515 <groupId>com.google.code.findbugs</groupId>
516 <artifactId>jsr305</artifactId>
517 </exclusion>
518 </exclusions>
519 </dependency>
520 <dependency>
521 <groupId>org.jetbrains.kotlin</groupId>
522 <artifactId>kotlin-stdlib-jdk8</artifactId>
523 <version>${kotlin.version}</version>
524 </dependency>
525 <dependency>
526 <groupId>org.jetbrains.kotlin</groupId>
527 <artifactId>kotlin-reflect</artifactId>
528 <version>${kotlin.version}</version>
529 </dependency>
530 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200531 <groupId>io.arrow-kt</groupId>
532 <artifactId>arrow-core</artifactId>
Piotr Jaszczyk67689402018-06-14 09:48:46 +0200533 <version>${arrow.version}</version>
534 <exclusions>
535 <exclusion>
536 <groupId>org.jetbrains.kotlin</groupId>
537 <artifactId>kotlin-stdlib</artifactId>
538 </exclusion>
539 <exclusion>
540 <groupId>org.jetbrains.kotlin</groupId>
541 <artifactId>kotlin-stdlib-jdk7</artifactId>
542 </exclusion>
543 </exclusions>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200544 </dependency>
545 <dependency>
546 <groupId>io.arrow-kt</groupId>
547 <artifactId>arrow-syntax</artifactId>
Piotr Jaszczyk67689402018-06-14 09:48:46 +0200548 <version>${arrow.version}</version>
549 </dependency>
550 <dependency>
551 <groupId>io.arrow-kt</groupId>
552 <artifactId>arrow-instances-core</artifactId>
553 <version>${arrow.version}</version>
554 </dependency>
555 <dependency>
556 <groupId>io.arrow-kt</groupId>
557 <artifactId>arrow-instances-data</artifactId>
558 <version>${arrow.version}</version>
559 </dependency>
560 <dependency>
561 <groupId>io.arrow-kt</groupId>
562 <artifactId>arrow-effects</artifactId>
563 <version>${arrow.version}</version>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200564 </dependency>
565 <dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200566 <groupId>ch.qos.logback</groupId>
567 <artifactId>logback-classic</artifactId>
568 <version>1.3.0-alpha4</version>
569 <scope>runtime</scope>
570 </dependency>
571 <dependency>
572 <groupId>org.slf4j</groupId>
573 <artifactId>slf4j-api</artifactId>
574 <version>1.8.0-beta1</version>
575 </dependency>
576 <dependency>
577 <groupId>io.projectreactor</groupId>
578 <artifactId>reactor-bom</artifactId>
Piotr Jaszczykef017af2018-07-05 10:06:46 +0200579 <version>Bismuth-SR10</version>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200580 <type>pom</type>
581 <scope>import</scope>
582 </dependency>
583 <dependency>
584 <groupId>io.netty</groupId>
585 <artifactId>netty-tcnative-boringssl-static</artifactId>
586 <version>2.0.8.Final</version>
587 <classifier>${os.detected.classifier}</classifier>
588 </dependency>
589 <dependency>
590 <groupId>com.google.protobuf</groupId>
591 <artifactId>protobuf-java</artifactId>
592 <version>${protobuf.version}</version>
593 </dependency>
594 <dependency>
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +0200595 <groupId>com.google.protobuf</groupId>
596 <artifactId>protobuf-java-util</artifactId>
597 <version>${protobuf.version}</version>
598 </dependency>
599 <dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200600 <groupId>commons-cli</groupId>
601 <artifactId>commons-cli</artifactId>
602 <version>1.4</version>
603 </dependency>
604 <dependency>
605 <groupId>javax.json</groupId>
606 <artifactId>javax.json-api</artifactId>
607 <version>1.1.2</version>
608 </dependency>
609 <dependency>
610 <groupId>org.glassfish</groupId>
611 <artifactId>javax.json</artifactId>
612 <version>1.1.2</version>
613 </dependency>
Piotr Jaszczyk39ceb732018-06-12 12:16:19 +0200614 <dependency>
615 <groupId>io.ratpack</groupId>
616 <artifactId>ratpack-core</artifactId>
617 <version>1.5.4</version>
618 </dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200619 <dependency>
620 <groupId>io.micrometer</groupId>
621 <artifactId>micrometer-registry-jmx</artifactId>
622 <version>1.0.5</version>
623 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200624
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200625 <!-- Test dependencies -->
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200626
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200627 <dependency>
628 <groupId>org.jetbrains.spek</groupId>
629 <artifactId>spek-api</artifactId>
630 <version>${spek.version}</version>
631 <scope>test</scope>
632 </dependency>
633 <dependency>
634 <groupId>org.jetbrains.spek</groupId>
635 <artifactId>spek-junit-platform-engine</artifactId>
636 <version>${spek.version}</version>
637 <scope>test</scope>
638 </dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200639 <dependency>
640 <groupId>org.assertj</groupId>
641 <artifactId>assertj-core</artifactId>
642 <version>3.9.1</version>
643 <scope>test</scope>
644 </dependency>
645 <dependency>
646 <groupId>com.nhaarman</groupId>
647 <artifactId>mockito-kotlin</artifactId>
648 <version>1.5.0</version>
649 <scope>test</scope>
650 <exclusions>
651 <exclusion>
652 <groupId>org.mockito</groupId>
653 <artifactId>mockito-core</artifactId>
654 </exclusion>
655 </exclusions>
656 </dependency>
657 <dependency>
658 <groupId>org.mockito</groupId>
659 <artifactId>mockito-core</artifactId>
660 <version>2.18.3</version>
661 <scope>test</scope>
662 </dependency>
663 <dependency>
664 <groupId>org.jetbrains.kotlin</groupId>
665 <artifactId>kotlin-test</artifactId>
666 <version>${kotlin.version}</version>
667 <scope>test</scope>
668 </dependency>
669 <dependency>
670 <groupId>io.projectreactor</groupId>
671 <artifactId>reactor-test</artifactId>
672 <version>3.1.7.RELEASE</version>
673 <scope>test</scope>
674 </dependency>
675 </dependencies>
676 </dependencyManagement>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200677</project>
678
679