[DCAE-HV-VES] Add jaas config for kafka connect
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-health-check / 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
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     <artifactId>hv-collector-health-check</artifactId>
43     <description>VES HighVolume Collector :: Health check</description>
44
45     <build>
46         <plugins>
47             <plugin>
48                 <artifactId>kotlin-maven-plugin</artifactId>
49                 <groupId>org.jetbrains.kotlin</groupId>
50             </plugin>
51             <plugin>
52                 <artifactId>maven-surefire-plugin</artifactId>
53                 <groupId>org.apache.maven.plugins</groupId>
54             </plugin>
55         </plugins>
56     </build>
57
58     <dependencies>
59         <dependency>
60             <groupId>${project.parent.groupId}</groupId>
61             <artifactId>hv-collector-utils</artifactId>
62             <version>${project.parent.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.jetbrains.kotlin</groupId>
66             <artifactId>kotlin-stdlib-jdk8</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>io.projectreactor.netty</groupId>
70             <artifactId>reactor-netty</artifactId>
71         </dependency>
72         <dependency>
73             <groupId>ch.qos.logback</groupId>
74             <artifactId>logback-classic</artifactId>
75             <scope>test</scope>
76         </dependency>
77         <dependency>
78             <groupId>org.jetbrains.kotlin</groupId>
79             <artifactId>kotlin-test</artifactId>
80             <scope>test</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.jetbrains.spek</groupId>
84             <artifactId>spek-api</artifactId>
85             <scope>test</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.jetbrains.spek</groupId>
89             <artifactId>spek-junit-platform-engine</artifactId>
90             <scope>test</scope>
91         </dependency>
92         <dependency>
93             <groupId>io.projectreactor</groupId>
94             <artifactId>reactor-test</artifactId>
95             <scope>test</scope>
96         </dependency>
97     </dependencies>
98 </project>