[DCAE-HV-VES] Add jaas config for kafka connect
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-commandline / 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   <modelVersion>4.0.0</modelVersion>
26
27   <parent>
28     <artifactId>hv-collector-sources</artifactId>
29     <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
30     <version>${revision}</version>
31     <relativePath>../pom.xml</relativePath>
32   </parent>
33
34   <artifactId>hv-collector-commandline</artifactId>
35   <description>VES HighVolume Collector :: Command Line</description>
36
37   <build>
38     <plugins>
39       <plugin>
40         <artifactId>kotlin-maven-plugin</artifactId>
41         <groupId>org.jetbrains.kotlin</groupId>
42       </plugin>
43       <plugin>
44         <artifactId>maven-surefire-plugin</artifactId>
45         <groupId>org.apache.maven.plugins</groupId>
46       </plugin>
47     </plugins>
48   </build>
49
50   <dependencies>
51     <dependency>
52       <groupId>${project.parent.groupId}</groupId>
53       <artifactId>hv-collector-utils</artifactId>
54       <version>${project.parent.version}</version>
55     </dependency>
56     <dependency>
57       <groupId>commons-cli</groupId>
58       <artifactId>commons-cli</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.assertj</groupId>
62       <artifactId>assertj-core</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.jetbrains.spek</groupId>
67       <artifactId>spek-api</artifactId>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.jetbrains.spek</groupId>
72       <artifactId>spek-junit-platform-engine</artifactId>
73       <scope>test</scope>
74     </dependency>
75   </dependencies>
76 </project>