blob: cfd4a0f9c88c57aee7732323a8feb5255c316dc0 [file] [log] [blame]
kjaniak9bdb7d92018-06-11 12:59:22 +02001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ ============LICENSE_START=======================================================
4 ~ dcaegen2-collectors-veshv
5 ~ ================================================================================
6 ~ Copyright (C) 2018 NOKIA
7 ~ ================================================================================
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"
Piotr Jaszczykd00acee2018-08-24 12:51:14 +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">
kjaniak9bdb7d92018-06-11 12:59:22 +020024 <modelVersion>4.0.0</modelVersion>
25
26 <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>
32
33 <parent>
Piotr Jaszczykae633932018-08-21 08:28:54 +020034 <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
kjaniak9bdb7d92018-06-11 12:59:22 +020035 <artifactId>ves-hv-collector</artifactId>
Piotr Jaszczykdb597632018-11-05 15:08:50 +010036 <version>4.0.0-SNAPSHOT</version>
kjaniak9bdb7d92018-06-11 12:59:22 +020037 <relativePath>..</relativePath>
38 </parent>
39
40 <artifactId>hv-collector-dcae-app-simulator</artifactId>
41 <description>VES HighVolume Collector :: Dcae app simulator</description>
42
43 <properties>
44 <skipAnalysis>false</skipAnalysis>
kjaniak9bdb7d92018-06-11 12:59:22 +020045 </properties>
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>
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +020059 <profiles>
60 <profile>
61 <id>docker</id>
62 <activation>
63 <property>
64 <name>!skipDocker</name>
65 </property>
66 </activation>
67 <build>
68 <plugins>
69 <plugin>
70 <groupId>org.apache.maven.plugins</groupId>
71 <artifactId>maven-dependency-plugin</artifactId>
72 </plugin>
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +020073 <plugin>
74 <groupId>io.fabric8</groupId>
75 <artifactId>docker-maven-plugin</artifactId>
76 </plugin>
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +020077 </plugins>
78 </build>
79 </profile>
80 </profiles>
kjaniak9bdb7d92018-06-11 12:59:22 +020081 <dependencies>
82 <dependency>
83 <groupId>${project.parent.groupId}</groupId>
84 <artifactId>hv-collector-domain</artifactId>
85 <version>${project.parent.version}</version>
86 </dependency>
87 <dependency>
88 <groupId>${project.parent.groupId}</groupId>
89 <artifactId>hv-collector-utils</artifactId>
90 <version>${project.parent.version}</version>
91 </dependency>
92 <dependency>
Jakub Dudycza2d874f2018-07-26 11:49:45 +020093 <groupId>${project.parent.groupId}</groupId>
94 <artifactId>hv-collector-ves-message-generator</artifactId>
95 <version>${project.parent.version}</version>
96 </dependency>
97 <dependency>
fkrzywka185bc702018-07-31 14:26:09 +020098 <groupId>${project.parent.groupId}</groupId>
99 <artifactId>hv-collector-test-utils</artifactId>
100 <version>${project.parent.version}</version>
101 <scope>test</scope>
102 </dependency>
103 <dependency>
Piotr Jaszczyk67689402018-06-14 09:48:46 +0200104 <groupId>io.arrow-kt</groupId>
105 <artifactId>arrow-effects</artifactId>
106 </dependency>
107 <dependency>
Piotr Jaszczykd00acee2018-08-24 12:51:14 +0200108 <groupId>io.arrow-kt</groupId>
109 <artifactId>arrow-effects-reactor</artifactId>
110 </dependency>
111 <dependency>
112 <groupId>io.arrow-kt</groupId>
113 <artifactId>arrow-syntax</artifactId>
114 </dependency>
115 <dependency>
Piotr Jaszczyk39ceb732018-06-12 12:16:19 +0200116 <groupId>io.ratpack</groupId>
117 <artifactId>ratpack-core</artifactId>
118 </dependency>
119 <dependency>
120 <groupId>io.projectreactor.kafka</groupId>
121 <artifactId>reactor-kafka</artifactId>
122 </dependency>
123 <dependency>
Piotr Jaszczyk94eeb732018-06-12 14:19:10 +0200124 <groupId>com.google.protobuf</groupId>
125 <artifactId>protobuf-java-util</artifactId>
126 </dependency>
127 <dependency>
kjaniak9bdb7d92018-06-11 12:59:22 +0200128 <groupId>commons-cli</groupId>
129 <artifactId>commons-cli</artifactId>
130 </dependency>
131 <dependency>
132 <groupId>org.slf4j</groupId>
133 <artifactId>slf4j-api</artifactId>
134 </dependency>
135 <dependency>
136 <groupId>org.jetbrains.kotlin</groupId>
137 <artifactId>kotlin-stdlib-jdk8</artifactId>
138 </dependency>
139 <dependency>
140 <groupId>com.nhaarman</groupId>
141 <artifactId>mockito-kotlin</artifactId>
142 </dependency>
143 <dependency>
144 <groupId>org.mockito</groupId>
145 <artifactId>mockito-core</artifactId>
146 </dependency>
147 <dependency>
148 <groupId>org.assertj</groupId>
149 <artifactId>assertj-core</artifactId>
150 </dependency>
151 <dependency>
152 <groupId>org.jetbrains.kotlin</groupId>
153 <artifactId>kotlin-test</artifactId>
154 </dependency>
155 <dependency>
156 <groupId>org.jetbrains.spek</groupId>
157 <artifactId>spek-api</artifactId>
158 </dependency>
159 <dependency>
160 <groupId>org.jetbrains.spek</groupId>
161 <artifactId>spek-junit-platform-engine</artifactId>
162 </dependency>
163 <dependency>
164 <groupId>io.projectreactor</groupId>
165 <artifactId>reactor-test</artifactId>
166 </dependency>
167 <dependency>
168 <groupId>ch.qos.logback</groupId>
169 <artifactId>logback-classic</artifactId>
170 <scope>runtime</scope>
171 </dependency>
172 </dependencies>
173
174
175</project>