blob: e1c90b3b8a6358d5bfc579b19beca148e59a24b5 [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 Jaszczykae633932018-08-21 08:28:54 +020040 <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020041 <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>
Piotr Jaszczyke2bd5642018-08-21 08:49:39 +020063 <kotlin.version>1.2.61</kotlin.version>
64 <arrow.version>0.7.3</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 Jaszczyk1d9f81b2018-08-23 09:06:19 +020067 <jacoco.version>0.8.2</jacoco.version>
Piotr Jaszczykd6f5bfa2018-08-29 13:24:59 +020068 <jacoco.minimum.coverage>66</jacoco.minimum.coverage>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020069
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020070 <!-- 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>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020075
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020076 <!-- 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>
Filip Krzywka88726d92018-08-10 08:26:42 +020080 <maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>
81 <failIfMissingUnitTests>false</failIfMissingUnitTests>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020082 <failIfMissingComponentTests>false</failIfMissingComponentTests>
83 <skipAnalysis>true</skipAnalysis>
fkrzywka4b8cfb32018-06-01 12:45:22 +020084
Piotr Jaszczyk69f43f22018-06-25 09:59:01 +020085 <!-- Docker -->
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +020086 <skipDocker>false</skipDocker>
Piotr Jaszczyk45613ff2018-08-16 08:09:27 +020087 <skipDockerPush>true</skipDockerPush>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +020088 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
Piotr Jaszczyk69f43f22018-06-25 09:59:01 +020089 <docker-image.registry>${onap.nexus.dockerregistry.daily}</docker-image.registry>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020090 <docker-image.namespace>onap</docker-image.namespace>
Filip Krzywka88726d92018-08-10 08:26:42 +020091 <docker-image.name>${project.groupId}.${project.artifactId}</docker-image.name>
92 <docker.http_proxy></docker.http_proxy>
Piotr Jaszczyk5e93c1e2018-08-14 12:52:28 +020093
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020094 </properties>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020095
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020096 <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>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +0200115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-deploy-plugin</artifactId>
117 <configuration>
118 <skip>true</skip>
119 </configuration>
120 </plugin>
121 <plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200122 <artifactId>kotlin-maven-plugin</artifactId>
123 <groupId>org.jetbrains.kotlin</groupId>
124 <version>${kotlin.version}</version>
125 <configuration>
126 <jvmTarget>1.8</jvmTarget>
Piotr Jaszczyk5e93c1e2018-08-14 12:52:28 +0200127 <experimentalCoroutines>enable</experimentalCoroutines>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200128 </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>
Filip Krzywka88726d92018-08-10 08:26:42 +0200208 <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>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200246 <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>
Piotr Jaszczyk851d4702018-08-23 14:45:39 +0200266 <plugin>
267 <groupId>org.codehaus.mojo</groupId>
268 <artifactId>exec-maven-plugin</artifactId>
269 <version>1.6.0</version>
270 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200271 </plugins>
272 </pluginManagement>
Filip Krzywka88726d92018-08-10 08:26:42 +0200273 <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>
Piotr Jaszczyk45613ff2018-08-16 08:09:27 +0200350 <version>1.0.0-SNAPSHOT</version>
Filip Krzywka88726d92018-08-10 08:26:42 +0200351 </dependency>
352 </dependencies>
353 </plugin>
354 </plugins>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200355 <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>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200363
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200364 <profiles>
365 <profile>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200366 <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>
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +0200381 <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>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200412 <groupId>io.fabric8</groupId>
413 <artifactId>docker-maven-plugin</artifactId>
414 <version>0.26.0</version>
415 <executions>
416 <execution>
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +0200417 <id>docker-build-image</id>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200418 <phase>package</phase>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200419 <goals>
420 <goal>build</goal>
421 </goals>
422 </execution>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +0200423 <execution>
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +0200424 <id>docker-push-image</id>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +0200425 <phase>deploy</phase>
426 <goals>
427 <goal>push</goal>
428 </goals>
429 </execution>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200430 </executions>
431 <configuration>
Piotr Jaszczyk45613ff2018-08-16 08:09:27 +0200432 <skipPush>${skipDockerPush}</skipPush>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200433 <verbose>true</verbose>
434 <imagePullPolicy>IfNotPresent</imagePullPolicy>
435 <images>
436 <image>
437 <alias>${project.artifactId}</alias>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200438 <name>${docker-image.namespace}/${docker-image.name}
Filip Krzywka88726d92018-08-10 08:26:42 +0200439 </name>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200440 <registry>${docker-image.registry}</registry>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200441 <build>
Piotr Jaszczyka8d82772018-08-03 12:07:28 +0200442 <!--
fkrzywkad76905b2018-07-30 12:55:03 +0200443 <args>
444 <http_proxy>${docker.http_proxy}</http_proxy>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200445 <https_proxy>${docker.http_proxy}</https_proxy>
fkrzywkad76905b2018-07-30 12:55:03 +0200446 </args>
Piotr Jaszczyka8d82772018-08-03 12:07:28 +0200447 -->
Piotr Jaszczykd6f5bfa2018-08-29 13:24:59 +0200448
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200449 <dockerFileDir>${project.basedir}</dockerFileDir>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200450 <tags>
Piotr Jaszczyk5bdae832018-08-30 08:42:21 +0200451 <tag>${project.version}-${maven.build.timestamp}Z</tag>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200452 <tag>${project.version}</tag>
453 <tag>latest</tag>
454 </tags>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200455 </build>
456 </image>
457 </images>
458 </configuration>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200459 <dependencies>
460 <dependency>
461 <groupId>io.fabric8</groupId>
462 <artifactId>run-java-sh</artifactId>
463 <version>1.2.2</version>
464 </dependency>
465 </dependencies>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200466 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200467 </plugins>
468 </pluginManagement>
469 </build>
470 </profile>
471 </profiles>
472
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200473 <pluginRepositories>
474 <pluginRepository>
475 <id>arturbosch-code-analysis</id>
476 <name>arturbosch-code-analysis (for detekt)</name>
477 <url>https://dl.bintray.com/arturbosch/code-analysis/</url>
478 <layout>default</layout>
479 <releases>
480 <enabled>true</enabled>
481 <updatePolicy>never</updatePolicy>
482 </releases>
483 <snapshots>
484 <enabled>false</enabled>
485 <updatePolicy>never</updatePolicy>
486 </snapshots>
487 </pluginRepository>
488 </pluginRepositories>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200489
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +0200490 <repositories>
491 <repository>
492 <id>40_openecomp-release</id>
493 <name>40_openecomp-release</name>
494 <url>https://nexus.onap.org/content/repositories/releases/</url>
495 <releases>
496 <enabled>true</enabled>
497 <updatePolicy>daily</updatePolicy>
498 </releases>
499 <snapshots>
500 <enabled>false</enabled>
501 </snapshots>
502 </repository>
503 </repositories>
504
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200505 <dependencyManagement>
506 <dependencies>
507 <dependency>
508 <groupId>com.google.guava</groupId>
509 <artifactId>guava</artifactId>
510 <version>25.0-jre</version>
511 <exclusions>
512 <exclusion>
513 <groupId>com.google.code.findbugs</groupId>
514 <artifactId>jsr305</artifactId>
515 </exclusion>
516 </exclusions>
517 </dependency>
518 <dependency>
519 <groupId>org.jetbrains.kotlin</groupId>
520 <artifactId>kotlin-stdlib-jdk8</artifactId>
521 <version>${kotlin.version}</version>
522 </dependency>
523 <dependency>
524 <groupId>org.jetbrains.kotlin</groupId>
525 <artifactId>kotlin-reflect</artifactId>
526 <version>${kotlin.version}</version>
527 </dependency>
528 <dependency>
Piotr Jaszczykd6f5bfa2018-08-29 13:24:59 +0200529 <groupId>org.jetbrains.kotlinx</groupId>
530 <artifactId>kotlinx-coroutines-core</artifactId>
531 <version>0.25.0</version>
532 </dependency>
533 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200534 <groupId>io.arrow-kt</groupId>
535 <artifactId>arrow-core</artifactId>
Piotr Jaszczyk67689402018-06-14 09:48:46 +0200536 <version>${arrow.version}</version>
537 <exclusions>
538 <exclusion>
539 <groupId>org.jetbrains.kotlin</groupId>
540 <artifactId>kotlin-stdlib</artifactId>
541 </exclusion>
542 <exclusion>
543 <groupId>org.jetbrains.kotlin</groupId>
544 <artifactId>kotlin-stdlib-jdk7</artifactId>
545 </exclusion>
546 </exclusions>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200547 </dependency>
548 <dependency>
549 <groupId>io.arrow-kt</groupId>
550 <artifactId>arrow-syntax</artifactId>
Piotr Jaszczyk67689402018-06-14 09:48:46 +0200551 <version>${arrow.version}</version>
552 </dependency>
553 <dependency>
554 <groupId>io.arrow-kt</groupId>
555 <artifactId>arrow-instances-core</artifactId>
556 <version>${arrow.version}</version>
557 </dependency>
558 <dependency>
559 <groupId>io.arrow-kt</groupId>
560 <artifactId>arrow-instances-data</artifactId>
561 <version>${arrow.version}</version>
562 </dependency>
563 <dependency>
564 <groupId>io.arrow-kt</groupId>
565 <artifactId>arrow-effects</artifactId>
566 <version>${arrow.version}</version>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200567 </dependency>
568 <dependency>
Piotr Jaszczykd00acee2018-08-24 12:51:14 +0200569 <groupId>io.arrow-kt</groupId>
570 <artifactId>arrow-effects-reactor</artifactId>
571 <version>${arrow.version}</version>
572 </dependency>
573 <dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200574 <groupId>ch.qos.logback</groupId>
575 <artifactId>logback-classic</artifactId>
576 <version>1.3.0-alpha4</version>
577 <scope>runtime</scope>
578 </dependency>
579 <dependency>
580 <groupId>org.slf4j</groupId>
581 <artifactId>slf4j-api</artifactId>
582 <version>1.8.0-beta1</version>
583 </dependency>
584 <dependency>
585 <groupId>io.projectreactor</groupId>
586 <artifactId>reactor-bom</artifactId>
Piotr Jaszczykef017af2018-07-05 10:06:46 +0200587 <version>Bismuth-SR10</version>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200588 <type>pom</type>
589 <scope>import</scope>
590 </dependency>
591 <dependency>
592 <groupId>io.netty</groupId>
593 <artifactId>netty-tcnative-boringssl-static</artifactId>
594 <version>2.0.8.Final</version>
595 <classifier>${os.detected.classifier}</classifier>
596 </dependency>
597 <dependency>
598 <groupId>com.google.protobuf</groupId>
599 <artifactId>protobuf-java</artifactId>
600 <version>${protobuf.version}</version>
601 </dependency>
602 <dependency>
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +0200603 <groupId>com.google.protobuf</groupId>
604 <artifactId>protobuf-java-util</artifactId>
605 <version>${protobuf.version}</version>
606 </dependency>
607 <dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200608 <groupId>commons-cli</groupId>
609 <artifactId>commons-cli</artifactId>
610 <version>1.4</version>
611 </dependency>
612 <dependency>
613 <groupId>javax.json</groupId>
614 <artifactId>javax.json-api</artifactId>
615 <version>1.1.2</version>
616 </dependency>
617 <dependency>
618 <groupId>org.glassfish</groupId>
619 <artifactId>javax.json</artifactId>
620 <version>1.1.2</version>
621 </dependency>
Piotr Jaszczyk39ceb732018-06-12 12:16:19 +0200622 <dependency>
623 <groupId>io.ratpack</groupId>
624 <artifactId>ratpack-core</artifactId>
625 <version>1.5.4</version>
626 </dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200627 <dependency>
628 <groupId>io.micrometer</groupId>
629 <artifactId>micrometer-registry-jmx</artifactId>
630 <version>1.0.5</version>
631 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200632
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200633 <!-- Test dependencies -->
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200634
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200635 <dependency>
636 <groupId>org.jetbrains.spek</groupId>
637 <artifactId>spek-api</artifactId>
638 <version>${spek.version}</version>
639 <scope>test</scope>
640 </dependency>
641 <dependency>
642 <groupId>org.jetbrains.spek</groupId>
643 <artifactId>spek-junit-platform-engine</artifactId>
644 <version>${spek.version}</version>
645 <scope>test</scope>
646 </dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200647 <dependency>
648 <groupId>org.assertj</groupId>
649 <artifactId>assertj-core</artifactId>
650 <version>3.9.1</version>
651 <scope>test</scope>
652 </dependency>
653 <dependency>
654 <groupId>com.nhaarman</groupId>
655 <artifactId>mockito-kotlin</artifactId>
656 <version>1.5.0</version>
657 <scope>test</scope>
658 <exclusions>
659 <exclusion>
660 <groupId>org.mockito</groupId>
661 <artifactId>mockito-core</artifactId>
662 </exclusion>
663 </exclusions>
664 </dependency>
665 <dependency>
666 <groupId>org.mockito</groupId>
667 <artifactId>mockito-core</artifactId>
668 <version>2.18.3</version>
669 <scope>test</scope>
670 </dependency>
671 <dependency>
672 <groupId>org.jetbrains.kotlin</groupId>
673 <artifactId>kotlin-test</artifactId>
674 <version>${kotlin.version}</version>
675 <scope>test</scope>
676 </dependency>
677 <dependency>
678 <groupId>io.projectreactor</groupId>
679 <artifactId>reactor-test</artifactId>
680 <version>3.1.7.RELEASE</version>
681 <scope>test</scope>
682 </dependency>
683 </dependencies>
684 </dependencyManagement>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200685</project>
686
687