[DCAE] INFO.yaml update
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-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-utils</artifactId>
42     <description>VES HighVolume Collector :: Utilities</description>
43
44
45     <build>
46         <plugins>
47             <plugin>
48                 <artifactId>kotlin-maven-plugin</artifactId>
49                 <groupId>org.jetbrains.kotlin</groupId>
50             </plugin>
51             <plugin>
52                 <artifactId>maven-surefire-plugin</artifactId>
53                 <groupId>org.apache.maven.plugins</groupId>
54             </plugin>
55         </plugins>
56     </build>
57
58     <dependencies>
59         <dependency>
60             <groupId>org.jetbrains.kotlin</groupId>
61             <artifactId>kotlin-reflect</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>org.jetbrains.kotlin</groupId>
65             <artifactId>kotlin-stdlib-jdk8</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>io.arrow-kt</groupId>
69             <artifactId>arrow-typeclasses</artifactId>
70         </dependency>
71         <dependency>
72             <groupId>io.arrow-kt</groupId>
73             <artifactId>arrow-core-extensions</artifactId>
74         </dependency>
75         <dependency>
76             <groupId>io.arrow-kt</groupId>
77             <artifactId>arrow-syntax</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>io.projectreactor.netty</groupId>
81             <artifactId>reactor-netty</artifactId>
82             <optional>true</optional>
83         </dependency>
84         <dependency>
85             <groupId>com.google.guava</groupId>
86             <artifactId>guava</artifactId>
87             <optional>true</optional>
88         </dependency>
89         <dependency>
90             <groupId>com.google.code.gson</groupId>
91             <artifactId>gson</artifactId>
92             <optional>true</optional>
93         </dependency>
94         <dependency>
95             <groupId>javax.json</groupId>
96             <artifactId>javax.json-api</artifactId>
97             <optional>true</optional>
98         </dependency>
99         <dependency>
100             <groupId>org.slf4j</groupId>
101             <artifactId>slf4j-api</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>ch.qos.logback</groupId>
105             <artifactId>logback-classic</artifactId>
106             <scope>compile</scope>
107         </dependency>
108         <dependency>
109             <groupId>org.assertj</groupId>
110             <artifactId>assertj-core</artifactId>
111         </dependency>
112         <dependency>
113             <groupId>org.jetbrains.kotlin</groupId>
114             <artifactId>kotlin-test</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.jetbrains.spek</groupId>
118             <artifactId>spek-api</artifactId>
119         </dependency>
120         <dependency>
121             <groupId>org.jetbrains.spek</groupId>
122             <artifactId>spek-junit-platform-engine</artifactId>
123         </dependency>
124         <dependency>
125             <groupId>io.projectreactor</groupId>
126             <artifactId>reactor-test</artifactId>
127         </dependency>
128         <dependency>
129             <groupId>com.nhaarman.mockitokotlin2</groupId>
130             <artifactId>mockito-kotlin</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>org.glassfish</groupId>
134             <artifactId>javax.json</artifactId>
135             <scope>provided</scope>
136         </dependency>
137     </dependencies>
138 </project>