Get rid of arrow-effects usage
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-health-check / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <modelVersion>4.0.0</modelVersion>
7
8     <licenses>
9         <license>
10             <name>The Apache Software License, Version 2.0</name>
11             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
12         </license>
13     </licenses>
14
15     <parent>
16         <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
17         <artifactId>hv-collector-sources</artifactId>
18         <version>1.1.0-SNAPSHOT</version>
19     </parent>
20
21     <artifactId>hv-collector-health-check</artifactId>
22     <description>VES HighVolume Collector :: Health check</description>
23
24     <build>
25         <plugins>
26             <plugin>
27                 <artifactId>kotlin-maven-plugin</artifactId>
28                 <groupId>org.jetbrains.kotlin</groupId>
29             </plugin>
30             <plugin>
31                 <artifactId>maven-surefire-plugin</artifactId>
32                 <groupId>org.apache.maven.plugins</groupId>
33             </plugin>
34         </plugins>
35     </build>
36
37     <dependencies>
38         <dependency>
39             <groupId>${project.parent.groupId}</groupId>
40             <artifactId>hv-collector-utils</artifactId>
41             <version>${project.parent.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>org.jetbrains.kotlin</groupId>
45             <artifactId>kotlin-stdlib-jdk8</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>io.projectreactor.netty</groupId>
49             <artifactId>reactor-netty</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>ch.qos.logback</groupId>
53             <artifactId>logback-classic</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.jetbrains.kotlin</groupId>
58             <artifactId>kotlin-test</artifactId>
59             <scope>test</scope>
60         </dependency>
61         <dependency>
62             <groupId>org.jetbrains.spek</groupId>
63             <artifactId>spek-api</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.jetbrains.spek</groupId>
68             <artifactId>spek-junit-platform-engine</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>io.projectreactor</groupId>
73             <artifactId>reactor-test</artifactId>
74             <scope>test</scope>
75         </dependency>
76     </dependencies>
77 </project>