blob: 83bd19e43aa26b1c39bbf4f7e34651ec9483c7dd [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>
Jakub Dudycz4aa75b52018-11-15 13:45:44 +010036 <version>1.0.2-SNAPSHOT</version>
kjaniakff1ce822018-05-29 13:32:14 +020037 <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>
45 </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>
Jakub Dudycz85439492018-06-08 12:57:13 +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>
Jakub Dudycz85439492018-06-08 12:57:13 +020072 </plugin>
Jakub Dudycz85439492018-06-08 12:57:13 +020073 <plugin>
74 <groupId>io.fabric8</groupId>
75 <artifactId>docker-maven-plugin</artifactId>
76 </plugin>
Jakub Dudycz85439492018-06-08 12:57:13 +020077 </plugins>
78 </build>
79 </profile>
80 </profiles>
kjaniakff1ce822018-05-29 13:32:14 +020081
82 <dependencies>
83 <dependency>
Jakub Dudycz7bc41372018-05-29 14:46:27 +020084 <groupId>${project.parent.groupId}</groupId>
fkrzywka23438162018-06-05 12:55:06 +020085 <artifactId>hv-collector-domain</artifactId>
Jakub Dudycz7bc41372018-05-29 14:46:27 +020086 <version>${project.parent.version}</version>
87 </dependency>
88 <dependency>
89 <groupId>${project.parent.groupId}</groupId>
Piotr Jaszczyk069dcc12018-09-20 12:04:03 +020090 <artifactId>hv-collector-ssl</artifactId>
91 <version>${project.parent.version}</version>
92 </dependency>
93 <dependency>
94 <groupId>${project.parent.groupId}</groupId>
Jakub Dudycz7bc41372018-05-29 14:46:27 +020095 <artifactId>hv-collector-utils</artifactId>
96 <version>${project.parent.version}</version>
97 </dependency>
98 <dependency>
kjaniak3bdd4172018-07-12 10:57:58 +020099 <groupId>${project.parent.groupId}</groupId>
100 <artifactId>hv-collector-ves-message-generator</artifactId>
101 <version>${project.parent.version}</version>
102 </dependency>
103 <dependency>
fkrzywka185bc702018-07-31 14:26:09 +0200104 <groupId>${project.parent.groupId}</groupId>
105 <artifactId>hv-collector-test-utils</artifactId>
106 <version>${project.parent.version}</version>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
Piotr Jaszczyk67689402018-06-14 09:48:46 +0200110 <groupId>io.arrow-kt</groupId>
111 <artifactId>arrow-effects</artifactId>
112 </dependency>
113 <dependency>
Piotr Jaszczykd6f5bfa2018-08-29 13:24:59 +0200114 <groupId>org.jetbrains.kotlinx</groupId>
115 <artifactId>kotlinx-coroutines-core</artifactId>
116 </dependency>
117 <dependency>
Jakub Dudycz7bc41372018-05-29 14:46:27 +0200118 <groupId>commons-cli</groupId>
119 <artifactId>commons-cli</artifactId>
120 </dependency>
121 <dependency>
kjaniakff1ce822018-05-29 13:32:14 +0200122 <groupId>org.slf4j</groupId>
123 <artifactId>slf4j-api</artifactId>
124 </dependency>
125 <dependency>
126 <groupId>org.jetbrains.kotlin</groupId>
127 <artifactId>kotlin-stdlib-jdk8</artifactId>
128 </dependency>
Piotr Jaszczyk069dcc12018-09-20 12:04:03 +0200129 <!-- See comment in main pom
130 <dependency>
131 <groupId>io.netty</groupId>
132 <artifactId>netty-transport-native-epoll</artifactId>
133 <classifier>${os.detected.classifier}</classifier>
134 </dependency>
kjaniakff1ce822018-05-29 13:32:14 +0200135 <dependency>
Piotr Jaszczyk07bbbf72018-06-07 11:52:16 +0200136 <groupId>io.netty</groupId>
137 <artifactId>netty-tcnative-boringssl-static</artifactId>
Piotr Jaszczyk07bbbf72018-06-07 11:52:16 +0200138 <classifier>${os.detected.classifier}</classifier>
139 </dependency>
Piotr Jaszczyk069dcc12018-09-20 12:04:03 +0200140 -->
Piotr Jaszczyk07bbbf72018-06-07 11:52:16 +0200141 <dependency>
kjaniakff1ce822018-05-29 13:32:14 +0200142 <groupId>com.nhaarman</groupId>
143 <artifactId>mockito-kotlin</artifactId>
144 </dependency>
145 <dependency>
146 <groupId>org.mockito</groupId>
147 <artifactId>mockito-core</artifactId>
148 </dependency>
149 <dependency>
150 <groupId>org.assertj</groupId>
151 <artifactId>assertj-core</artifactId>
152 </dependency>
153 <dependency>
154 <groupId>org.jetbrains.kotlin</groupId>
155 <artifactId>kotlin-test</artifactId>
156 </dependency>
157 <dependency>
158 <groupId>org.jetbrains.spek</groupId>
159 <artifactId>spek-api</artifactId>
160 </dependency>
161 <dependency>
162 <groupId>org.jetbrains.spek</groupId>
163 <artifactId>spek-junit-platform-engine</artifactId>
164 </dependency>
165 <dependency>
166 <groupId>io.projectreactor</groupId>
167 <artifactId>reactor-test</artifactId>
168 </dependency>
169 <dependency>
170 <groupId>ch.qos.logback</groupId>
171 <artifactId>logback-classic</artifactId>
Jakub Dudycz7bc41372018-05-29 14:46:27 +0200172 <scope>runtime</scope>
kjaniakff1ce822018-05-29 13:32:14 +0200173 </dependency>
Jakub Dudycz85a59b82018-06-11 16:54:47 +0200174 <dependency>
175 <groupId>org.glassfish</groupId>
176 <artifactId>javax.json</artifactId>
177 </dependency>
178 <dependency>
179 <groupId>io.ratpack</groupId>
180 <artifactId>ratpack-core</artifactId>
181 </dependency>
kjaniakff1ce822018-05-29 13:32:14 +0200182 </dependencies>
183
184
185</project>