[DCAE-HV-VES] Add jaas config for kafka connect
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-main / 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-main</artifactId>
42     <description>VES HighVolume Collector :: Main</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         </plugins>
55     </build>
56
57     <profiles>
58         <profile>
59             <id>docker</id>
60             <activation>
61                 <property>
62                     <name>!skipDocker</name>
63                 </property>
64             </activation>
65             <build>
66                 <plugins>
67                     <plugin>
68                         <groupId>org.apache.maven.plugins</groupId>
69                         <artifactId>maven-dependency-plugin</artifactId>
70                     </plugin>
71                     <plugin>
72                         <groupId>io.fabric8</groupId>
73                         <artifactId>docker-maven-plugin</artifactId>
74                     </plugin>
75                 </plugins>
76             </build>
77         </profile>
78     </profiles>
79
80     <dependencies>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>hv-collector-configuration</artifactId>
84             <version>${project.version}</version>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}</groupId>
88             <artifactId>hv-collector-health-check</artifactId>
89             <version>${project.version}</version>
90         </dependency>
91         <dependency>
92             <groupId>${project.groupId}</groupId>
93             <artifactId>hv-collector-server</artifactId>
94             <version>${project.version}</version>
95         </dependency>
96         <dependency>
97             <groupId>io.arrow-kt</groupId>
98             <artifactId>arrow-core-data</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>io.arrow-kt</groupId>
102             <artifactId>arrow-syntax</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>org.slf4j</groupId>
106             <artifactId>slf4j-api</artifactId>
107         </dependency>
108         <dependency>
109             <groupId>ch.qos.logback</groupId>
110             <artifactId>logback-classic</artifactId>
111         </dependency>
112         <!-- See comment in main pom
113         <dependency>
114             <groupId>io.netty</groupId>
115             <artifactId>netty-transport-native-epoll</artifactId>
116             <classifier>${os.detected.classifier}</classifier>
117         </dependency>
118         <dependency>
119             <groupId>io.netty</groupId>
120             <artifactId>netty-tcnative-boringssl-static</artifactId>
121             <classifier>${os.detected.classifier}</classifier>
122         </dependency>
123         -->
124         <dependency>
125             <groupId>io.micrometer</groupId>
126             <artifactId>micrometer-registry-prometheus</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>${project.groupId}</groupId>
130             <artifactId>hv-collector-test-utils</artifactId>
131             <version>${project.version}</version>
132             <scope>test</scope>
133         </dependency>
134     </dependencies>
135
136
137 </project>