[DCAE-HV-VES] Add jaas config for kafka connect
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-kafka-consumer / 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-consumer</artifactId>
44
45   <description>VES HighVolume Collector :: Kafka consumer</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   <profiles>
61     <profile>
62       <id>docker</id>
63       <activation>
64         <property>
65           <name>!skipDocker</name>
66         </property>
67       </activation>
68       <build>
69         <plugins>
70           <plugin>
71             <groupId>org.apache.maven.plugins</groupId>
72             <artifactId>maven-dependency-plugin</artifactId>
73           </plugin>
74           <plugin>
75             <groupId>io.fabric8</groupId>
76             <artifactId>docker-maven-plugin</artifactId>
77           </plugin>
78         </plugins>
79       </build>
80     </profile>
81   </profiles>
82
83   <dependencies>
84     <dependency>
85       <groupId>${project.parent.groupId}</groupId>
86       <artifactId>hv-collector-commandline</artifactId>
87       <version>${project.parent.version}</version>
88       <scope>compile</scope>
89     </dependency>
90     <dependency>
91       <groupId>${project.parent.groupId}</groupId>
92       <artifactId>hv-collector-kafka</artifactId>
93       <version>${project.parent.version}</version>
94       <scope>compile</scope>
95     </dependency>
96     <dependency>
97       <groupId>${project.parent.groupId}</groupId>
98       <artifactId>hv-collector-test-utils</artifactId>
99       <version>${project.parent.version}</version>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>ch.qos.logback</groupId>
104       <artifactId>logback-classic</artifactId>
105       <scope>runtime</scope>
106     </dependency>
107     <dependency>
108       <groupId>io.micrometer</groupId>
109       <artifactId>micrometer-registry-prometheus</artifactId>
110     </dependency>
111     <dependency>
112       <groupId>io.projectreactor.netty</groupId>
113       <artifactId>reactor-netty</artifactId>
114     </dependency>
115     <dependency>
116       <groupId>org.jetbrains.kotlin</groupId>
117       <artifactId>kotlin-stdlib-jdk8</artifactId>
118     </dependency>
119     <dependency>
120       <groupId>org.onap.dcaegen2.services.sdk</groupId>
121       <artifactId>hvvesclient-protobuf</artifactId>
122     </dependency>
123     <dependency>
124       <groupId>org.jetbrains.kotlinx</groupId>
125       <artifactId>kotlinx-coroutines-core</artifactId>
126       <scope>compile</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.slf4j</groupId>
130       <artifactId>slf4j-api</artifactId>
131     </dependency>
132     <dependency>
133       <groupId>org.jetbrains.kotlinx</groupId>
134       <artifactId>kotlinx-coroutines-test</artifactId>
135       <scope>test</scope>
136     </dependency>
137   </dependencies>
138 </project>