Patch version increased (1.4.0 -> 1.4.1)
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-kafka / 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.4.1-SNAPSHOT</version>
19         <relativePath>..</relativePath>
20     </parent>
21
22
23     <artifactId>hv-collector-kafka</artifactId>
24
25     <description>VES HighVolume Collector :: Kafka</description>
26
27     <build>
28         <plugins>
29             <plugin>
30                 <artifactId>kotlin-maven-plugin</artifactId>
31                 <groupId>org.jetbrains.kotlin</groupId>
32             </plugin>
33             <plugin>
34                 <artifactId>maven-surefire-plugin</artifactId>
35                 <groupId>org.apache.maven.plugins</groupId>
36             </plugin>
37         </plugins>
38     </build>
39
40     <dependencies>
41         <dependency>
42             <groupId>${project.parent.groupId}</groupId>
43             <artifactId>hv-collector-utils</artifactId>
44             <version>${project.parent.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>io.projectreactor.kafka</groupId>
48             <artifactId>reactor-kafka</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>org.jetbrains.kotlin</groupId>
52             <artifactId>kotlin-stdlib-jdk8</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>com.nhaarman.mockitokotlin2</groupId>
56             <artifactId>mockito-kotlin</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.assertj</groupId>
61             <artifactId>assertj-core</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.jetbrains.spek</groupId>
66             <artifactId>spek-api</artifactId>
67             <scope>test</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.jetbrains.spek</groupId>
71             <artifactId>spek-junit-platform-engine</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.slf4j</groupId>
76             <artifactId>slf4j-api</artifactId>
77         </dependency>
78     </dependencies>
79 </project>