[DCAE-HV-VES] Add jaas config for kafka connect
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-xnf-simulator / 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-xnf-simulator</artifactId>
42     <description>VES HighVolume Collector :: XNF simulator</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     <profiles>
57         <profile>
58             <id>docker</id>
59             <activation>
60                 <property>
61                     <name>!skipDocker</name>
62                 </property>
63             </activation>
64             <build>
65                 <plugins>
66                     <plugin>
67                         <groupId>org.apache.maven.plugins</groupId>
68                         <artifactId>maven-dependency-plugin</artifactId>
69                     </plugin>
70                     <plugin>
71                         <groupId>io.fabric8</groupId>
72                         <artifactId>docker-maven-plugin</artifactId>
73                     </plugin>
74                 </plugins>
75             </build>
76         </profile>
77     </profiles>
78
79     <dependencies>
80         <dependency>
81             <groupId>${project.parent.groupId}</groupId>
82             <artifactId>hv-collector-ssl</artifactId>
83             <version>${project.parent.version}</version>
84         </dependency>
85         <dependency>
86             <groupId>${project.parent.groupId}</groupId>
87             <artifactId>hv-collector-commandline</artifactId>
88             <version>${project.parent.version}</version>
89         </dependency>
90         <dependency>
91             <groupId>${project.parent.groupId}</groupId>
92             <artifactId>hv-collector-ves-message-generator</artifactId>
93             <version>${project.parent.version}</version>
94         </dependency>
95         <dependency>
96             <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
97             <artifactId>hv-collector-health-check</artifactId>
98             <version>${project.parent.version}</version>
99         </dependency>
100         <dependency>
101             <groupId>org.onap.dcaegen2.services.sdk</groupId>
102             <artifactId>hvvesclient-producer-impl</artifactId>
103         </dependency>
104         <dependency>
105             <groupId>${project.parent.groupId}</groupId>
106             <artifactId>hv-collector-test-utils</artifactId>
107             <version>${project.parent.version}</version>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.jetbrains.kotlin</groupId>
112             <artifactId>kotlin-stdlib-jdk8</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.slf4j</groupId>
116             <artifactId>slf4j-api</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>ch.qos.logback</groupId>
120             <artifactId>logback-classic</artifactId>
121             <scope>runtime</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.glassfish</groupId>
125             <artifactId>javax.json</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>com.google.guava</groupId>
129             <artifactId>guava</artifactId>
130             <optional>true</optional>
131         </dependency>
132     </dependencies>
133 </project>