[DCAE] INFO.yaml update
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-kafka / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ dcaegen2-collectors-veshv
5   ~ ================================================================================
6   ~ Copyright (C) 2019 NOKIA
7   ~ Copyright (C) 2022 Nordix Foundation.
8   ~ ================================================================================
9   ~ Licensed under the Apache License, Version 2.0 (the "License");
10   ~ you may not use this file except in compliance with the License.
11   ~ You may obtain a copy of the License at
12   ~
13   ~      http://www.apache.org/licenses/LICENSE-2.0
14   ~
15   ~ Unless required by applicable law or agreed to in writing, software
16   ~ distributed under the License is distributed on an "AS IS" BASIS,
17   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   ~ See the License for the specific language governing permissions and
19   ~ limitations under the License.
20   ~ ============LICENSE_END=========================================================
21   -->
22 <project xmlns="http://maven.apache.org/POM/4.0.0"
23          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25
26     <modelVersion>4.0.0</modelVersion>
27
28     <licenses>
29         <license>
30             <name>The Apache Software License, Version 2.0</name>
31             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
32         </license>
33     </licenses>
34
35     <parent>
36         <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
37         <artifactId>hv-collector-sources</artifactId>
38         <version>${revision}</version>
39         <relativePath>../pom.xml</relativePath>
40     </parent>
41
42
43     <artifactId>hv-collector-kafka</artifactId>
44
45     <description>VES HighVolume Collector :: Kafka</description>
46
47     <build>
48         <plugins>
49             <plugin>
50                 <artifactId>kotlin-maven-plugin</artifactId>
51                 <groupId>org.jetbrains.kotlin</groupId>
52             </plugin>
53             <plugin>
54                 <artifactId>maven-surefire-plugin</artifactId>
55                 <groupId>org.apache.maven.plugins</groupId>
56             </plugin>
57         </plugins>
58     </build>
59
60     <dependencies>
61         <dependency>
62             <groupId>${project.parent.groupId}</groupId>
63             <artifactId>hv-collector-utils</artifactId>
64             <version>${project.parent.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>io.projectreactor.kafka</groupId>
68             <artifactId>reactor-kafka</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.jetbrains.kotlin</groupId>
72             <artifactId>kotlin-stdlib-jdk8</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>com.nhaarman.mockitokotlin2</groupId>
76             <artifactId>mockito-kotlin</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.assertj</groupId>
81             <artifactId>assertj-core</artifactId>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.jetbrains.spek</groupId>
86             <artifactId>spek-api</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.jetbrains.spek</groupId>
91             <artifactId>spek-junit-platform-engine</artifactId>
92             <scope>test</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.slf4j</groupId>
96             <artifactId>slf4j-api</artifactId>
97         </dependency>
98     </dependencies>
99 </project>