blob: b80e15558413420d7a4b73512081d84680588cc7 [file] [log] [blame]
kjaniakff1ce822018-05-29 13:32:14 +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
kjaniakff1ce822018-05-29 13:32:14 +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"
fkrzywka185bc702018-07-31 14:26:09 +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">
kjaniakff1ce822018-05-29 13:32:14 +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>
kjaniakff1ce822018-05-29 13:32:14 +020035 <artifactId>ves-hv-collector</artifactId>
36 <version>1.0.0-SNAPSHOT</version>
37 <relativePath>..</relativePath>
38 </parent>
39
Jakub Dudycz13837752018-07-09 08:06:01 +020040 <artifactId>hv-collector-xnf-simulator</artifactId>
41 <description>VES HighVolume Collector :: XNF simulator</description>
kjaniakff1ce822018-05-29 13:32:14 +020042
43 <properties>
44 <skipAnalysis>false</skipAnalysis>
Jakub Dudycz13837752018-07-09 08:06:01 +020045 <docker-image.name>ves-hv-collector-xnf-simulator</docker-image.name>
kjaniakff1ce822018-05-29 13:32:14 +020046 </properties>
47
48 <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>
Jakub Dudycz85439492018-06-08 12:57:13 +020060 <profiles>
61 <profile>
62 <id>docker</id>
63 <activation>
64 <property>
65 <name>!skipDocker</name>
66 </property>
67 </activation>
68 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.apache.maven.plugins</groupId>
72 <artifactId>maven-dependency-plugin</artifactId>
Jakub Dudycz85439492018-06-08 12:57:13 +020073 </plugin>
Jakub Dudycz85439492018-06-08 12:57:13 +020074 <plugin>
75 <groupId>io.fabric8</groupId>
76 <artifactId>docker-maven-plugin</artifactId>
77 </plugin>
Jakub Dudycz85439492018-06-08 12:57:13 +020078 </plugins>
79 </build>
80 </profile>
81 </profiles>
kjaniakff1ce822018-05-29 13:32:14 +020082
83 <dependencies>
84 <dependency>
Jakub Dudycz7bc41372018-05-29 14:46:27 +020085 <groupId>${project.parent.groupId}</groupId>
fkrzywka23438162018-06-05 12:55:06 +020086 <artifactId>hv-collector-domain</artifactId>
Jakub Dudycz7bc41372018-05-29 14:46:27 +020087 <version>${project.parent.version}</version>
88 </dependency>
89 <dependency>
90 <groupId>${project.parent.groupId}</groupId>
91 <artifactId>hv-collector-utils</artifactId>
92 <version>${project.parent.version}</version>
93 </dependency>
94 <dependency>
kjaniak3bdd4172018-07-12 10:57:58 +020095 <groupId>${project.parent.groupId}</groupId>
96 <artifactId>hv-collector-ves-message-generator</artifactId>
97 <version>${project.parent.version}</version>
98 </dependency>
99 <dependency>
fkrzywka185bc702018-07-31 14:26:09 +0200100 <groupId>${project.parent.groupId}</groupId>
101 <artifactId>hv-collector-test-utils</artifactId>
102 <version>${project.parent.version}</version>
103 <scope>test</scope>
104 </dependency>
105 <dependency>
Piotr Jaszczyk67689402018-06-14 09:48:46 +0200106 <groupId>io.arrow-kt</groupId>
107 <artifactId>arrow-effects</artifactId>
108 </dependency>
109 <dependency>
Jakub Dudycz7bc41372018-05-29 14:46:27 +0200110 <groupId>commons-cli</groupId>
111 <artifactId>commons-cli</artifactId>
112 </dependency>
113 <dependency>
kjaniakff1ce822018-05-29 13:32:14 +0200114 <groupId>org.slf4j</groupId>
115 <artifactId>slf4j-api</artifactId>
116 </dependency>
117 <dependency>
118 <groupId>org.jetbrains.kotlin</groupId>
119 <artifactId>kotlin-stdlib-jdk8</artifactId>
120 </dependency>
121 <dependency>
Piotr Jaszczyk07bbbf72018-06-07 11:52:16 +0200122 <groupId>io.netty</groupId>
123 <artifactId>netty-tcnative-boringssl-static</artifactId>
124 <scope>runtime</scope>
125 <classifier>${os.detected.classifier}</classifier>
126 </dependency>
127 <dependency>
kjaniakff1ce822018-05-29 13:32:14 +0200128 <groupId>com.nhaarman</groupId>
129 <artifactId>mockito-kotlin</artifactId>
130 </dependency>
131 <dependency>
132 <groupId>org.mockito</groupId>
133 <artifactId>mockito-core</artifactId>
134 </dependency>
135 <dependency>
136 <groupId>org.assertj</groupId>
137 <artifactId>assertj-core</artifactId>
138 </dependency>
139 <dependency>
140 <groupId>org.jetbrains.kotlin</groupId>
141 <artifactId>kotlin-test</artifactId>
142 </dependency>
143 <dependency>
144 <groupId>org.jetbrains.spek</groupId>
145 <artifactId>spek-api</artifactId>
146 </dependency>
147 <dependency>
148 <groupId>org.jetbrains.spek</groupId>
149 <artifactId>spek-junit-platform-engine</artifactId>
150 </dependency>
151 <dependency>
152 <groupId>io.projectreactor</groupId>
153 <artifactId>reactor-test</artifactId>
154 </dependency>
155 <dependency>
156 <groupId>ch.qos.logback</groupId>
157 <artifactId>logback-classic</artifactId>
Jakub Dudycz7bc41372018-05-29 14:46:27 +0200158 <scope>runtime</scope>
kjaniakff1ce822018-05-29 13:32:14 +0200159 </dependency>
Jakub Dudycz85a59b82018-06-11 16:54:47 +0200160 <dependency>
161 <groupId>org.glassfish</groupId>
162 <artifactId>javax.json</artifactId>
163 </dependency>
164 <dependency>
165 <groupId>io.ratpack</groupId>
166 <artifactId>ratpack-core</artifactId>
167 </dependency>
kjaniakff1ce822018-05-29 13:32:14 +0200168 </dependencies>
169
170
171</project>