Patch version increased (1.4.0 -> 1.4.1)
[dcaegen2/collectors/hv-ves.git] / sources / 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>hv-collector-sources</artifactId>
17         <version>1.4.1-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         <skipAnalysis>true</skipAnalysis>
28     </properties>
29
30     <build>
31         <plugins>
32             <plugin>
33                 <artifactId>kotlin-maven-plugin</artifactId>
34                 <groupId>org.jetbrains.kotlin</groupId>
35             </plugin>
36             <plugin>
37                 <artifactId>maven-surefire-plugin</artifactId>
38                 <groupId>org.apache.maven.plugins</groupId>
39             </plugin>
40         </plugins>
41     </build>
42
43     <dependencies>
44         <dependency>
45             <groupId>${project.parent.groupId}</groupId>
46             <artifactId>hv-collector-domain</artifactId>
47             <version>${project.parent.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>${project.parent.groupId}</groupId>
51             <artifactId>hv-collector-commandline</artifactId>
52             <version>${project.parent.version}</version>
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         <dependency>
85             <groupId>ch.qos.logback</groupId>
86             <artifactId>logback-classic</artifactId>
87             <scope>compile</scope>
88         </dependency>
89         <dependency>
90             <groupId>io.micrometer</groupId>
91             <artifactId>micrometer-registry-prometheus</artifactId>
92             <scope>compile</scope>
93         </dependency>
94     </dependencies>
95 </project>