blob: f1b7f0610b254b985dec3cbae990635b98201e68 [file] [log] [blame]
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ dcaegen2-collectors-veshv
5 ~ ================================================================================
fkrzywkae74c9e12018-06-06 10:43:53 +02006 ~ Copyright (C) 2018 NOKIA
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +02007 ~ ================================================================================
8 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 ~ ============LICENSE_END=========================================================
20 -->
21<project xmlns="http://maven.apache.org/POM/4.0.0"
fkrzywka32aeb322018-06-13 10:02:03 +020022 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020025
fkrzywka32aeb322018-06-13 10:02:03 +020026 <licenses>
27 <license>
28 <name>The Apache Software License, Version 2.0</name>
29 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
30 </license>
31 </licenses>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020032
fkrzywka32aeb322018-06-13 10:02:03 +020033 <properties>
34 <skipAnalysis>false</skipAnalysis>
35 </properties>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020036
fkrzywka32aeb322018-06-13 10:02:03 +020037 <parent>
Piotr Jaszczykae633932018-08-21 08:28:54 +020038 <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
fkrzywka32aeb322018-06-13 10:02:03 +020039 <artifactId>ves-hv-collector</artifactId>
40 <version>1.0.0-SNAPSHOT</version>
41 <relativePath>..</relativePath>
42 </parent>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020043
fkrzywka32aeb322018-06-13 10:02:03 +020044 <artifactId>hv-collector-utils</artifactId>
45 <description>VES HighVolume Collector :: Utilities</description>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020046
47
fkrzywka32aeb322018-06-13 10:02:03 +020048 <build>
49 <plugins>
50 <plugin>
51 <artifactId>kotlin-maven-plugin</artifactId>
52 <groupId>org.jetbrains.kotlin</groupId>
53 </plugin>
54 <plugin>
55 <artifactId>maven-surefire-plugin</artifactId>
56 <groupId>org.apache.maven.plugins</groupId>
57 </plugin>
58 </plugins>
59 </build>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020060
fkrzywka32aeb322018-06-13 10:02:03 +020061 <dependencies>
62 <dependency>
Jakub Dudyczf738ede2018-07-25 16:13:28 +020063 <groupId>${project.parent.groupId}</groupId>
fkrzywka63f17962018-07-31 14:22:59 +020064 <artifactId>hv-collector-domain</artifactId>
Jakub Dudyczf738ede2018-07-25 16:13:28 +020065 <version>${project.parent.version}</version>
66 </dependency>
67 <dependency>
fkrzywka32aeb322018-06-13 10:02:03 +020068 <groupId>commons-cli</groupId>
69 <artifactId>commons-cli</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.jetbrains.kotlin</groupId>
73 <artifactId>kotlin-reflect</artifactId>
74 </dependency>
75 <dependency>
Piotr Jaszczyk67689402018-06-14 09:48:46 +020076 <groupId>io.arrow-kt</groupId>
77 <artifactId>arrow-instances-data</artifactId>
78 </dependency>
79 <dependency>
Piotr Jaszczyke31d59f2018-07-04 13:16:21 +020080 <groupId>io.arrow-kt</groupId>
81 <artifactId>arrow-effects</artifactId>
82 </dependency>
83 <dependency>
84 <groupId>io.arrow-kt</groupId>
85 <artifactId>arrow-syntax</artifactId>
86 </dependency>
87 <dependency>
fkrzywka32aeb322018-06-13 10:02:03 +020088 <groupId>org.slf4j</groupId>
89 <artifactId>slf4j-api</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>com.nhaarman</groupId>
93 <artifactId>mockito-kotlin</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>org.mockito</groupId>
97 <artifactId>mockito-core</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>org.assertj</groupId>
101 <artifactId>assertj-core</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>org.jetbrains.kotlin</groupId>
105 <artifactId>kotlin-test</artifactId>
106 </dependency>
107 <dependency>
108 <groupId>org.jetbrains.spek</groupId>
109 <artifactId>spek-api</artifactId>
110 </dependency>
111 <dependency>
112 <groupId>org.jetbrains.spek</groupId>
113 <artifactId>spek-junit-platform-engine</artifactId>
114 </dependency>
115 <dependency>
116 <groupId>io.projectreactor</groupId>
117 <artifactId>reactor-test</artifactId>
118 </dependency>
119 <dependency>
120 <groupId>ch.qos.logback</groupId>
121 <artifactId>logback-classic</artifactId>
122 <scope>test</scope>
123 </dependency>
124 </dependencies>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200125
126
127</project>