[DCAE-HV-VES] Add jaas config for kafka connect
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-core / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ ============LICENSE_START=======================================================
4   ~ dcaegen2-collectors-veshv
5   ~ ================================================================================
6   ~ Copyright (C) 2018-2021 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     <modelVersion>4.0.0</modelVersion>
26
27     <licenses>
28         <license>
29             <name>The Apache Software License, Version 2.0</name>
30             <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
31         </license>
32     </licenses>
33
34     <parent>
35         <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
36         <artifactId>hv-collector-sources</artifactId>
37         <version>${revision}</version>
38         <relativePath>../pom.xml</relativePath>
39     </parent>
40
41     <artifactId>hv-collector-core</artifactId>
42     <description>VES HighVolume Collector :: Core</description>
43
44     <build>
45         <plugins>
46             <plugin>
47                 <artifactId>kotlin-maven-plugin</artifactId>
48                 <groupId>org.jetbrains.kotlin</groupId>
49             </plugin>
50             <plugin>
51                 <artifactId>maven-surefire-plugin</artifactId>
52                 <groupId>org.apache.maven.plugins</groupId>
53             </plugin>
54             <plugin>
55                 <groupId>org.jacoco</groupId>
56                 <artifactId>jacoco-maven-plugin</artifactId>
57             </plugin>
58         </plugins>
59     </build>
60
61     <dependencies>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>hv-collector-configuration</artifactId>
65             <version>${project.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>${project.groupId}</groupId>
69             <artifactId>hv-collector-domain</artifactId>
70             <version>${project.version}</version>
71             <scope>compile</scope>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>hv-collector-utils</artifactId>
76             <version>${project.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>${project.groupId}</groupId>
80             <artifactId>hv-collector-ssl</artifactId>
81             <version>${project.version}</version>
82         </dependency>
83         <dependency>
84             <groupId>io.arrow-kt</groupId>
85             <artifactId>arrow-core-data</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>io.arrow-kt</groupId>
89             <artifactId>arrow-extras-data</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>io.projectreactor</groupId>
93             <artifactId>reactor-core</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>io.projectreactor.netty</groupId>
97             <artifactId>reactor-netty</artifactId>
98         </dependency>
99         <dependency>
100             <groupId>io.projectreactor.kafka</groupId>
101             <artifactId>reactor-kafka</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>${project.groupId}</groupId>
105             <artifactId>hv-collector-test-utils</artifactId>
106             <version>${project.version}</version>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>io.kotest</groupId>
111             <artifactId>kotest-runner-junit5-jvm</artifactId>
112             <version>4.2.0</version>
113             <scope>test</scope>
114         </dependency>
115     </dependencies>
116
117 </project>