[DCAE-HV-VES] Add jaas config for kafka connect
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-test-utils / 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-test-utils</artifactId>
42     <description>VES HighVolume Collector :: Test Utilities</description>
43
44     <properties>
45         <failIfMissingUnitTests>false</failIfMissingUnitTests>
46         <failIfMissingComponentTests>false</failIfMissingComponentTests>
47         <skipAnalysis>true</skipAnalysis>
48     </properties>
49
50     <build>
51         <plugins>
52             <plugin>
53                 <artifactId>kotlin-maven-plugin</artifactId>
54                 <groupId>org.jetbrains.kotlin</groupId>
55             </plugin>
56             <plugin>
57                 <artifactId>maven-surefire-plugin</artifactId>
58                 <groupId>org.apache.maven.plugins</groupId>
59             </plugin>
60         </plugins>
61     </build>
62
63     <dependencies>
64         <dependency>
65             <groupId>${project.parent.groupId}</groupId>
66             <artifactId>hv-collector-domain</artifactId>
67             <version>${project.parent.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>${project.parent.groupId}</groupId>
71             <artifactId>hv-collector-commandline</artifactId>
72             <version>${project.parent.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>org.assertj</groupId>
76             <artifactId>assertj-core</artifactId>
77             <scope>compile</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.jetbrains.kotlin</groupId>
81             <artifactId>kotlin-test</artifactId>
82             <scope>compile</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.jetbrains.spek</groupId>
86             <artifactId>spek-api</artifactId>
87             <scope>compile</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.jetbrains.spek</groupId>
91             <artifactId>spek-junit-platform-engine</artifactId>
92             <scope>compile</scope>
93         </dependency>
94         <dependency>
95             <groupId>io.projectreactor</groupId>
96             <artifactId>reactor-test</artifactId>
97             <scope>compile</scope>
98         </dependency>
99         <dependency>
100             <groupId>com.nhaarman.mockitokotlin2</groupId>
101             <artifactId>mockito-kotlin</artifactId>
102             <scope>compile</scope>
103         </dependency>
104         <dependency>
105             <groupId>ch.qos.logback</groupId>
106             <artifactId>logback-classic</artifactId>
107             <scope>compile</scope>
108         </dependency>
109         <dependency>
110             <groupId>io.micrometer</groupId>
111             <artifactId>micrometer-registry-prometheus</artifactId>
112             <scope>compile</scope>
113         </dependency>
114     </dependencies>
115 </project>