blob: 8d5a2e67f1a75a96cb8f0f0170a6d5615489b22e [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 ~ ================================================================================
Filip Krzywka7b4e5e92019-02-13 11:09:38 +01006 ~ Copyright (C) 2018-2019 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 -->
kjaniak011aed62019-02-04 12:52:21 +010021<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">
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>
Piotr Jaszczyk4d15e5a2018-11-07 15:08:43 +010036 <version>1.2.1</version>
Filip Krzywka88726d92018-08-10 08:26:42 +020037 <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>
Piotr Jaszczyk4d15e5a2018-11-07 15:08:43 +010042 <version>1.1.0-SNAPSHOT</version>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020043 <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>
Piotr Jaszczykdde383a2018-11-28 15:46:50 +010048 <module>build</module>
49 <module>sources</module>
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +020050 </modules>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020051
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020052 <properties>
Piotr Jaszczyk82b27ff2019-02-15 12:59:26 +010053 <kotlin.version>1.3.21</kotlin.version>
Piotr Jaszczyk0bfbf812018-11-06 10:09:32 +010054 <arrow.version>0.8.0</arrow.version>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020055 <maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
56 <build-helper-maven-plugin.version>1.7</build-helper-maven-plugin.version>
Piotr Jaszczyk1d9f81b2018-08-23 09:06:19 +020057 <jacoco.version>0.8.2</jacoco.version>
Piotr Jaszczykdde383a2018-11-28 15:46:50 +010058 <detekt.version>1.0.0-RC11</detekt.version>
Filip Krzywka1422bed2019-02-28 17:33:02 +010059 <sdk.version>1.1.4-SNAPSHOT</sdk.version>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020060
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020061 <!-- Protocol buffers -->
Jakub Dudyczcd8f9082018-11-07 16:36:17 +010062 <protobuf.version>3.6.1</protobuf.version>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020063
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020064 <!-- Testing and code analysis -->
65 <junit-platform.version>1.2.0-RC1</junit-platform.version>
66 <junit-jupiter.version>5.2.0-RC1</junit-jupiter.version>
67 <spek.version>1.1.5</spek.version>
pbinieke9220922019-02-27 23:31:15 +010068 <gson.version>2.8.5</gson.version>
Filip Krzywka88726d92018-08-10 08:26:42 +020069 <maven-surefire-plugin.version>2.22.0</maven-surefire-plugin.version>
70 <failIfMissingUnitTests>false</failIfMissingUnitTests>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020071 <failIfMissingComponentTests>false</failIfMissingComponentTests>
72 <skipAnalysis>true</skipAnalysis>
Piotr Jaszczykdde383a2018-11-28 15:46:50 +010073 <jacoco.minimum.coverage>60</jacoco.minimum.coverage>
kjaniak011aed62019-02-04 12:52:21 +010074 <skipEnforcer>true</skipEnforcer>
fkrzywka4b8cfb32018-06-01 12:45:22 +020075
Piotr Jaszczyk69f43f22018-06-25 09:59:01 +020076 <!-- Docker -->
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +020077 <skipDocker>false</skipDocker>
Piotr Jaszczyk45613ff2018-08-16 08:09:27 +020078 <skipDockerPush>true</skipDockerPush>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +020079 <maven.build.timestamp.format>yyyyMMdd'T'HHmmss</maven.build.timestamp.format>
Piotr Jaszczyk69f43f22018-06-25 09:59:01 +020080 <docker-image.registry>${onap.nexus.dockerregistry.daily}</docker-image.registry>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020081 <docker-image.namespace>onap</docker-image.namespace>
Filip Krzywka88726d92018-08-10 08:26:42 +020082 <docker-image.name>${project.groupId}.${project.artifactId}</docker-image.name>
Filip Krzywka3cebad12018-11-19 16:17:05 +010083 <docker-image.latest>1.1-SNAPSHOT</docker-image.latest>
Gary Wu2d669cf2018-08-24 15:20:36 -070084 <docker.http_proxy/>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020085 </properties>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020086
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020087 <build>
88 <sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
89 <testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
90 <resources>
91 <resource>
92 <directory>${project.basedir}/src/main/resources</directory>
93 </resource>
94 </resources>
95 <pluginManagement>
96 <plugins>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-resources-plugin</artifactId>
100 <version>3.1.0</version>
101 <configuration>
102 <encoding>UTF-8</encoding>
103 </configuration>
104 </plugin>
105 <plugin>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +0200106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-deploy-plugin</artifactId>
108 <configuration>
109 <skip>true</skip>
110 </configuration>
111 </plugin>
112 <plugin>
kjaniak011aed62019-02-04 12:52:21 +0100113 <groupId>org.apache.maven.plugins</groupId>
114 <artifactId>maven-enforcer-plugin</artifactId>
115 <configuration>
116 <skip>${skipEnforcer}</skip>
117 </configuration>
118 </plugin>
119 <plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200120 <artifactId>kotlin-maven-plugin</artifactId>
121 <groupId>org.jetbrains.kotlin</groupId>
122 <version>${kotlin.version}</version>
123 <configuration>
124 <jvmTarget>1.8</jvmTarget>
125 </configuration>
126 <executions>
127 <execution>
128 <id>compile</id>
129 <goals>
130 <goal>compile</goal>
131 </goals>
132 <configuration>
133 <sourceDirs>
134 <source>${project.build.sourceDirectory}</source>
135 <source>${project.build.directory}/generated-sources/annotations</source>
136 </sourceDirs>
137 </configuration>
138 </execution>
139 <execution>
140 <id>test-compile</id>
141 <goals>
142 <goal>test-compile</goal>
143 </goals>
144 <configuration>
145 <sourceDirs>
146 <source>${project.build.testSourceDirectory}</source>
147 </sourceDirs>
148 </configuration>
149 </execution>
150 </executions>
151 </plugin>
152 <plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200153 <groupId>org.apache.maven.plugins</groupId>
154 <artifactId>maven-compiler-plugin</artifactId>
155 <version>${maven-compiler-plugin.version}</version>
156 <configuration>
157 <source>8</source>
158 <target>8</target>
159 <encoding>UTF-8</encoding>
160 <showWarnings>true</showWarnings>
161 <showDeprecation>true</showDeprecation>
162 <failOnWarning>false</failOnWarning>
163 </configuration>
164 <dependencies>
165 <dependency>
166 <groupId>org.ow2.asm</groupId>
167 <artifactId>asm</artifactId>
168 <version>6.1.1</version> <!-- Use newer version of ASM -->
169 </dependency>
170 </dependencies>
171 </plugin>
172 <!--
173 Due to a memory leak in Surefire 2.20 and issues running on Java 9, the junit-platform-surefire-provider
174 currently only works with Surefire 2.19.1.
175 For updates see https://junit.org/junit5/docs/current/user-guide/#running-tests-build-maven
176 -->
177 <plugin>
178 <artifactId>maven-surefire-plugin</artifactId>
179 <groupId>org.apache.maven.plugins</groupId>
180 <version>${maven-surefire-plugin.version}</version>
Filip Krzywka88726d92018-08-10 08:26:42 +0200181 <configuration>
182 <failIfNoTests>${failIfMissingUnitTests}</failIfNoTests>
183 <forkCount>1</forkCount>
184 <includes>
185 <include>**/*Test.*</include>
186 </includes>
187 </configuration>
188 <dependencies>
189 <dependency>
190 <groupId>org.apache.commons</groupId>
191 <artifactId>commons-lang3</artifactId>
192 <version>3.7</version>
193 </dependency>
194 <dependency>
195 <groupId>org.junit.platform</groupId>
196 <artifactId>junit-platform-surefire-provider</artifactId>
197 <version>${junit-platform.version}</version>
198 <scope>runtime</scope>
199 </dependency>
200 <dependency>
201 <groupId>org.jetbrains.spek</groupId>
202 <artifactId>spek-junit-platform-engine</artifactId>
203 <version>${spek.version}</version>
204 <scope>runtime</scope>
205 </dependency>
206 </dependencies>
207 </plugin>
208 <plugin>
209 <groupId>org.apache.maven.plugins</groupId>
210 <artifactId>maven-failsafe-plugin</artifactId>
211 <version>2.22.0</version>
212 <configuration>
213 <failIfNoTests>${failIfMissingComponentTests}</failIfNoTests>
214 <forkCount>1</forkCount>
215 <includes>
216 <include>**/*Specification.*</include>
217 </includes>
218 </configuration>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200219 <dependencies>
220 <dependency>
221 <groupId>org.apache.commons</groupId>
222 <artifactId>commons-lang3</artifactId>
223 <version>3.7</version>
224 </dependency>
225 <dependency>
226 <groupId>org.junit.platform</groupId>
227 <artifactId>junit-platform-surefire-provider</artifactId>
228 <version>${junit-platform.version}</version>
229 <scope>runtime</scope>
230 </dependency>
231 <dependency>
232 <groupId>org.jetbrains.spek</groupId>
233 <artifactId>spek-junit-platform-engine</artifactId>
234 <version>${spek.version}</version>
235 <scope>runtime</scope>
236 </dependency>
237 </dependencies>
238 </plugin>
Piotr Jaszczyk851d4702018-08-23 14:45:39 +0200239 <plugin>
240 <groupId>org.codehaus.mojo</groupId>
241 <artifactId>exec-maven-plugin</artifactId>
242 <version>1.6.0</version>
243 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200244 </plugins>
245 </pluginManagement>
246 <extensions>
247 <extension>
248 <groupId>kr.motd.maven</groupId>
249 <artifactId>os-maven-plugin</artifactId>
250 <version>1.6.0</version>
251 </extension>
252 </extensions>
253 </build>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200254
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200255 <profiles>
256 <profile>
Piotr Jaszczykb20f9632018-09-06 08:20:03 +0200257 <id>docker-proxy</id>
258 <activation>
259 <property>
260 <name>docker.http_proxy</name>
261 </property>
262 </activation>
263 <properties>
264 <!-- set build args as defined in https://dmp.fabric8.io/#build-buildargs -->
265 <docker.buildArg.http_proxy>${docker.http_proxy}</docker.buildArg.http_proxy>
266 <docker.buildArg.https_proxy>${docker.http_proxy}</docker.buildArg.https_proxy>
267 </properties>
268 </profile>
269
270 <profile>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200271 <id>docker</id>
272 <activation>
273 <property>
274 <name>!skipDocker</name>
275 </property>
276 </activation>
277 <properties>
278 <os.detected.name>linux</os.detected.name>
279 <os.detected.arch>x86_64</os.detected.arch>
280 <os.detected.classifier>${os.detected.name}-${os.detected.arch}</os.detected.classifier>
281 </properties>
282 <build>
283 <pluginManagement>
284 <plugins>
285 <plugin>
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +0200286 <groupId>org.apache.maven.plugins</groupId>
287 <artifactId>maven-dependency-plugin</artifactId>
288 <version>3.1.1</version>
289 <executions>
290 <execution>
291 <id>docker-copy-internal-deps</id>
292 <phase>package</phase>
293 <goals>
294 <goal>copy-dependencies</goal>
295 </goals>
296 <configuration>
297 <outputDirectory>${project.build.directory}/libs/internal</outputDirectory>
298 <includeGroupIds>${project.parent.groupId}</includeGroupIds>
299 <includeScope>runtime</includeScope>
300 </configuration>
301 </execution>
302 <execution>
303 <id>docker-copy-external-deps</id>
304 <phase>package</phase>
305 <goals>
306 <goal>copy-dependencies</goal>
307 </goals>
308 <configuration>
309 <outputDirectory>${project.build.directory}/libs/external</outputDirectory>
310 <excludeGroupIds>${project.parent.groupId}</excludeGroupIds>
311 <includeScope>runtime</includeScope>
312 </configuration>
313 </execution>
314 </executions>
315 </plugin>
316 <plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200317 <groupId>io.fabric8</groupId>
318 <artifactId>docker-maven-plugin</artifactId>
319 <version>0.26.0</version>
320 <executions>
321 <execution>
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +0200322 <id>docker-build-image</id>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200323 <phase>package</phase>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200324 <goals>
325 <goal>build</goal>
326 </goals>
327 </execution>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +0200328 <execution>
Piotr Jaszczyk286d4fb2018-08-03 11:50:23 +0200329 <id>docker-push-image</id>
Piotr Jaszczyk0aa02842018-06-06 13:18:05 +0200330 <phase>deploy</phase>
331 <goals>
332 <goal>push</goal>
333 </goals>
334 </execution>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200335 </executions>
336 <configuration>
Piotr Jaszczyk45613ff2018-08-16 08:09:27 +0200337 <skipPush>${skipDockerPush}</skipPush>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200338 <verbose>true</verbose>
339 <imagePullPolicy>IfNotPresent</imagePullPolicy>
340 <images>
341 <image>
342 <alias>${project.artifactId}</alias>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200343 <name>${docker-image.namespace}/${docker-image.name}
Filip Krzywka88726d92018-08-10 08:26:42 +0200344 </name>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200345 <registry>${docker-image.registry}</registry>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200346 <build>
347 <dockerFileDir>${project.basedir}</dockerFileDir>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200348 <tags>
Piotr Jaszczyk5bdae832018-08-30 08:42:21 +0200349 <tag>${project.version}-${maven.build.timestamp}Z</tag>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200350 <tag>${project.version}</tag>
Filip Krzywka3cebad12018-11-19 16:17:05 +0100351 <tag>${docker-image.latest}</tag>
Piotr Jaszczyk8a2552a2018-08-03 13:05:15 +0200352 </tags>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200353 </build>
354 </image>
355 </images>
356 </configuration>
357 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200358 </plugins>
359 </pluginManagement>
360 </build>
361 </profile>
362 </profiles>
363
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200364 <pluginRepositories>
365 <pluginRepository>
366 <id>arturbosch-code-analysis</id>
367 <name>arturbosch-code-analysis (for detekt)</name>
368 <url>https://dl.bintray.com/arturbosch/code-analysis/</url>
369 <layout>default</layout>
370 <releases>
371 <enabled>true</enabled>
372 <updatePolicy>never</updatePolicy>
373 </releases>
374 <snapshots>
375 <enabled>false</enabled>
376 <updatePolicy>never</updatePolicy>
377 </snapshots>
378 </pluginRepository>
379 </pluginRepositories>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200380
Piotr Jaszczyk1e77afd2018-06-13 09:56:17 +0200381 <repositories>
382 <repository>
383 <id>40_openecomp-release</id>
384 <name>40_openecomp-release</name>
385 <url>https://nexus.onap.org/content/repositories/releases/</url>
386 <releases>
387 <enabled>true</enabled>
388 <updatePolicy>daily</updatePolicy>
389 </releases>
390 <snapshots>
391 <enabled>false</enabled>
392 </snapshots>
393 </repository>
394 </repositories>
395
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200396 <dependencyManagement>
397 <dependencies>
398 <dependency>
399 <groupId>com.google.guava</groupId>
400 <artifactId>guava</artifactId>
Jakub Dudyczf938e8a2019-03-05 15:49:04 +0100401 <version>27.0.1-jre</version>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200402 <exclusions>
403 <exclusion>
404 <groupId>com.google.code.findbugs</groupId>
405 <artifactId>jsr305</artifactId>
406 </exclusion>
407 </exclusions>
408 </dependency>
409 <dependency>
410 <groupId>org.jetbrains.kotlin</groupId>
411 <artifactId>kotlin-stdlib-jdk8</artifactId>
412 <version>${kotlin.version}</version>
413 </dependency>
414 <dependency>
415 <groupId>org.jetbrains.kotlin</groupId>
416 <artifactId>kotlin-reflect</artifactId>
417 <version>${kotlin.version}</version>
418 </dependency>
419 <dependency>
Piotr Jaszczykdde383a2018-11-28 15:46:50 +0100420 <groupId>org.jetbrains.kotlin</groupId>
421 <artifactId>kotlin-compiler-embeddable</artifactId>
422 <version>${kotlin.version}</version>
423 </dependency>
424 <dependency>
425 <groupId>org.jetbrains.kotlin</groupId>
426 <artifactId>kotlin-script-runtime</artifactId>
427 <version>${kotlin.version}</version>
428 <scope>runtime</scope>
429 </dependency>
430 <dependency>
431 <groupId>org.jetbrains.kotlin</groupId>
432 <artifactId>kotlin-script-util</artifactId>
433 <version>${kotlin.version}</version>
434 <scope>runtime</scope>
435 </dependency>
436 <dependency>
Piotr Jaszczykd6f5bfa2018-08-29 13:24:59 +0200437 <groupId>org.jetbrains.kotlinx</groupId>
438 <artifactId>kotlinx-coroutines-core</artifactId>
Piotr Jaszczyk0bfbf812018-11-06 10:09:32 +0100439 <version>1.0.0</version>
Piotr Jaszczykd6f5bfa2018-08-29 13:24:59 +0200440 </dependency>
441 <dependency>
pbinieke9220922019-02-27 23:31:15 +0100442 <groupId>com.google.code.gson</groupId>
443 <artifactId>gson</artifactId>
444 <version>${gson.version}</version>
445 </dependency>
446 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200447 <groupId>io.arrow-kt</groupId>
448 <artifactId>arrow-core</artifactId>
Piotr Jaszczyk67689402018-06-14 09:48:46 +0200449 <version>${arrow.version}</version>
450 <exclusions>
451 <exclusion>
452 <groupId>org.jetbrains.kotlin</groupId>
453 <artifactId>kotlin-stdlib</artifactId>
454 </exclusion>
455 <exclusion>
456 <groupId>org.jetbrains.kotlin</groupId>
457 <artifactId>kotlin-stdlib-jdk7</artifactId>
458 </exclusion>
459 </exclusions>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200460 </dependency>
461 <dependency>
462 <groupId>io.arrow-kt</groupId>
463 <artifactId>arrow-syntax</artifactId>
Piotr Jaszczyk67689402018-06-14 09:48:46 +0200464 <version>${arrow.version}</version>
465 </dependency>
466 <dependency>
467 <groupId>io.arrow-kt</groupId>
468 <artifactId>arrow-instances-core</artifactId>
469 <version>${arrow.version}</version>
470 </dependency>
471 <dependency>
472 <groupId>io.arrow-kt</groupId>
473 <artifactId>arrow-instances-data</artifactId>
474 <version>${arrow.version}</version>
475 </dependency>
476 <dependency>
477 <groupId>io.arrow-kt</groupId>
478 <artifactId>arrow-effects</artifactId>
479 <version>${arrow.version}</version>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200480 </dependency>
481 <dependency>
Piotr Jaszczykd00acee2018-08-24 12:51:14 +0200482 <groupId>io.arrow-kt</groupId>
Piotr Jaszczyk0bfbf812018-11-06 10:09:32 +0100483 <artifactId>arrow-effects-instances</artifactId>
484 <version>${arrow.version}</version>
485 </dependency>
486 <dependency>
487 <groupId>io.arrow-kt</groupId>
Piotr Jaszczykd00acee2018-08-24 12:51:14 +0200488 <artifactId>arrow-effects-reactor</artifactId>
489 <version>${arrow.version}</version>
490 </dependency>
491 <dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200492 <groupId>ch.qos.logback</groupId>
493 <artifactId>logback-classic</artifactId>
494 <version>1.3.0-alpha4</version>
495 <scope>runtime</scope>
496 </dependency>
497 <dependency>
498 <groupId>org.slf4j</groupId>
499 <artifactId>slf4j-api</artifactId>
500 <version>1.8.0-beta1</version>
501 </dependency>
502 <dependency>
503 <groupId>io.projectreactor</groupId>
504 <artifactId>reactor-bom</artifactId>
Piotr Jaszczyk069dcc12018-09-20 12:04:03 +0200505 <!-- remember to update netty native bindings versions -->
Piotr Jaszczyk82b27ff2019-02-15 12:59:26 +0100506 <version>Californium-SR4</version>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200507 <type>pom</type>
508 <scope>import</scope>
509 </dependency>
Piotr Jaszczyk069dcc12018-09-20 12:04:03 +0200510 <!--
511 <dependency>
512 <groupId>io.netty</groupId>
513 <artifactId>netty-transport-native-epoll</artifactId>
514 <version>4.1.29.Final</version>
515 <classifier>${os.detected.classifier}</classifier>
516 </dependency>
517 -->
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200518 <dependency>
519 <groupId>com.google.protobuf</groupId>
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +0200520 <artifactId>protobuf-java-util</artifactId>
521 <version>${protobuf.version}</version>
Jakub Dudyczf938e8a2019-03-05 15:49:04 +0100522 <exclusions>
523 <exclusion>
524 <groupId>com.google.guava</groupId>
525 <artifactId>guava</artifactId>
526 </exclusion>
527 </exclusions>
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +0200528 </dependency>
529 <dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200530 <groupId>commons-cli</groupId>
531 <artifactId>commons-cli</artifactId>
532 <version>1.4</version>
533 </dependency>
534 <dependency>
535 <groupId>javax.json</groupId>
536 <artifactId>javax.json-api</artifactId>
537 <version>1.1.2</version>
538 </dependency>
539 <dependency>
540 <groupId>org.glassfish</groupId>
541 <artifactId>javax.json</artifactId>
542 <version>1.1.2</version>
543 </dependency>
Piotr Jaszczyk39ceb732018-06-12 12:16:19 +0200544 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200545 <groupId>io.micrometer</groupId>
Piotr Jaszczyk62fc38c2018-12-12 09:07:05 +0100546 <artifactId>micrometer-registry-prometheus</artifactId>
547 <version>1.0.8</version>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200548 </dependency>
kjaniak011aed62019-02-04 12:52:21 +0100549 <dependency>
550 <groupId>org.onap.dcaegen2.services.sdk</groupId>
551 <artifactId>hvvesclient-producer-impl</artifactId>
552 <version>${sdk.version}</version>
553 <scope>runtime</scope>
554 </dependency>
555 <dependency>
556 <groupId>org.onap.dcaegen2.services.sdk</groupId>
557 <artifactId>hvvesclient-producer-api</artifactId>
558 <version>${sdk.version}</version>
559 </dependency>
Filip Krzywka7b4e5e92019-02-13 11:09:38 +0100560 <dependency>
561 <groupId>org.onap.dcaegen2.services.sdk</groupId>
562 <artifactId>hvvesclient-protobuf</artifactId>
563 <version>${sdk.version}</version>
564 </dependency>
Piotr Jaszczyk82b27ff2019-02-15 12:59:26 +0100565 <dependency>
566 <groupId>org.onap.dcaegen2.services.sdk.security</groupId>
567 <artifactId>ssl</artifactId>
568 <version>${sdk.version}</version>
569 </dependency>
Filip Krzywka1422bed2019-02-28 17:33:02 +0100570 <dependency>
571 <groupId>org.onap.dcaegen2.services.sdk.rest.services</groupId>
572 <artifactId>cbs-client</artifactId>
573 <version>${sdk.version}</version>
574 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200575
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200576 <!-- Test dependencies -->
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200577
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200578 <dependency>
579 <groupId>org.jetbrains.spek</groupId>
580 <artifactId>spek-api</artifactId>
581 <version>${spek.version}</version>
582 <scope>test</scope>
583 </dependency>
584 <dependency>
585 <groupId>org.jetbrains.spek</groupId>
586 <artifactId>spek-junit-platform-engine</artifactId>
587 <version>${spek.version}</version>
588 <scope>test</scope>
589 </dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200590 <dependency>
591 <groupId>org.assertj</groupId>
592 <artifactId>assertj-core</artifactId>
593 <version>3.9.1</version>
594 <scope>test</scope>
595 </dependency>
596 <dependency>
Piotr Jaszczyk4d15e5a2018-11-07 15:08:43 +0100597 <groupId>com.nhaarman.mockitokotlin2</groupId>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200598 <artifactId>mockito-kotlin</artifactId>
Piotr Jaszczyk4d15e5a2018-11-07 15:08:43 +0100599 <version>2.0.0</version>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200600 <scope>test</scope>
601 </dependency>
602 <dependency>
603 <groupId>org.jetbrains.kotlin</groupId>
604 <artifactId>kotlin-test</artifactId>
605 <version>${kotlin.version}</version>
606 <scope>test</scope>
607 </dependency>
608 <dependency>
609 <groupId>io.projectreactor</groupId>
610 <artifactId>reactor-test</artifactId>
611 <version>3.1.7.RELEASE</version>
612 <scope>test</scope>
613 </dependency>
614 </dependencies>
615 </dependencyManagement>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200616</project>