Bump checkstyle version
[dcaegen2/collectors/hv-ves.git] / 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     <properties>
16         <skipAnalysis>false</skipAnalysis>
17     </properties>
18
19     <parent>
20         <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
21         <artifactId>ves-hv-collector</artifactId>
22         <version>1.1.0-SNAPSHOT</version>
23         <relativePath>..</relativePath>
24     </parent>
25
26     <artifactId>hv-collector-health-check</artifactId>
27     <description>VES HighVolume Collector :: Health check</description>
28
29     <build>
30         <plugins>
31             <plugin>
32                 <artifactId>kotlin-maven-plugin</artifactId>
33                 <groupId>org.jetbrains.kotlin</groupId>
34             </plugin>
35             <plugin>
36                 <artifactId>maven-surefire-plugin</artifactId>
37                 <groupId>org.apache.maven.plugins</groupId>
38             </plugin>
39         </plugins>
40     </build>
41
42     <dependencies>
43         <dependency>
44             <groupId>${project.parent.groupId}</groupId>
45             <artifactId>hv-collector-utils</artifactId>
46             <version>${project.parent.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>org.jetbrains.kotlin</groupId>
50             <artifactId>kotlin-stdlib-jdk8</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>io.projectreactor.netty</groupId>
54             <artifactId>reactor-netty</artifactId>
55         </dependency>
56         <dependency>
57             <groupId>io.arrow-kt</groupId>
58             <artifactId>arrow-effects</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.jetbrains.kotlin</groupId>
62             <artifactId>kotlin-test</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.jetbrains.spek</groupId>
67             <artifactId>spek-api</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.jetbrains.spek</groupId>
72             <artifactId>spek-junit-platform-engine</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>io.projectreactor</groupId>
77             <artifactId>reactor-test</artifactId>
78             <scope>test</scope>
79         </dependency>
80     </dependencies>
81 </project>