Bump checkstyle version
[dcaegen2/collectors/hv-ves.git] / hv-collector-test-utils / 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     <modelVersion>4.0.0</modelVersion>
6
7     <licenses>
8         <license>
9             <name>The Apache Software License, Version 2.0</name>
10             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
11         </license>
12     </licenses>
13
14     <parent>
15         <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
16         <artifactId>ves-hv-collector</artifactId>
17         <version>1.1.0-SNAPSHOT</version>
18         <relativePath>..</relativePath>
19     </parent>
20
21     <artifactId>hv-collector-test-utils</artifactId>
22     <description>VES HighVolume Collector :: Test Utilities</description>
23
24     <properties>
25         <failIfMissingUnitTests>false</failIfMissingUnitTests>
26         <failIfMissingComponentTests>false</failIfMissingComponentTests>
27     </properties>
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-domain</artifactId>
46             <version>${project.parent.version}</version>
47         </dependency>
48         <dependency>
49             <groupId>${project.parent.groupId}</groupId>
50             <artifactId>hv-collector-utils</artifactId>
51             <version>${project.parent.version}</version>
52             <scope>compile</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.assertj</groupId>
56             <artifactId>assertj-core</artifactId>
57             <scope>compile</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.jetbrains.kotlin</groupId>
61             <artifactId>kotlin-test</artifactId>
62             <scope>compile</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.jetbrains.spek</groupId>
66             <artifactId>spek-api</artifactId>
67             <scope>compile</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.jetbrains.spek</groupId>
71             <artifactId>spek-junit-platform-engine</artifactId>
72             <scope>compile</scope>
73         </dependency>
74         <dependency>
75             <groupId>io.projectreactor</groupId>
76             <artifactId>reactor-test</artifactId>
77             <scope>compile</scope>
78         </dependency>
79         <dependency>
80             <groupId>com.nhaarman.mockitokotlin2</groupId>
81             <artifactId>mockito-kotlin</artifactId>
82             <scope>compile</scope>
83         </dependency>
84     </dependencies>
85 </project>