blob: 70c5b5067493356de0b2b7b03976d1bf89746561 [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"
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">
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +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>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020035 <artifactId>ves-hv-collector</artifactId>
36 <version>1.0.0-SNAPSHOT</version>
37 <relativePath>..</relativePath>
38 </parent>
39
40 <artifactId>hv-collector-main</artifactId>
41 <description>VES HighVolume Collector :: Main</description>
42
43 <properties>
44 <skipAnalysis>false</skipAnalysis>
fkrzywka4b8cfb32018-06-01 12:45:22 +020045 <docker-image.name>ves-hv-collector</docker-image.name>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +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>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020058 </plugins>
59 </build>
60
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020061 <profiles>
62 <profile>
63 <id>docker</id>
64 <activation>
65 <property>
66 <name>!skipDocker</name>
67 </property>
68 </activation>
69 <build>
70 <plugins>
71 <plugin>
72 <groupId>org.apache.maven.plugins</groupId>
73 <artifactId>maven-dependency-plugin</artifactId>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020074 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020075 <plugin>
76 <groupId>io.fabric8</groupId>
77 <artifactId>docker-maven-plugin</artifactId>
78 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020079 </plugins>
80 </build>
81 </profile>
82 </profiles>
83
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020084 <dependencies>
85 <dependency>
86 <groupId>${project.parent.groupId}</groupId>
87 <artifactId>hv-collector-core</artifactId>
88 <version>${project.parent.version}</version>
89 </dependency>
fkrzywka185bc702018-07-31 14:26:09 +020090 <dependency>
91 <groupId>${project.parent.groupId}</groupId>
Jakub Dudyczdd827e22018-08-07 14:18:37 +020092 <artifactId>hv-collector-health-check</artifactId>
93 <version>${project.parent.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>${project.parent.groupId}</groupId>
fkrzywka185bc702018-07-31 14:26:09 +020097 <artifactId>hv-collector-test-utils</artifactId>
98 <version>${project.parent.version}</version>
99 <scope>test</scope>
100 </dependency>
Jakub Dudyczdd827e22018-08-07 14:18:37 +0200101 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200102 <groupId>io.arrow-kt</groupId>
103 <artifactId>arrow-core</artifactId>
104 </dependency>
105 <dependency>
106 <groupId>io.arrow-kt</groupId>
107 <artifactId>arrow-syntax</artifactId>
108 </dependency>
109 <dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200110 <groupId>org.slf4j</groupId>
111 <artifactId>slf4j-api</artifactId>
112 </dependency>
113 <dependency>
114 <groupId>ch.qos.logback</groupId>
115 <artifactId>logback-classic</artifactId>
116 </dependency>
117 <dependency>
118 <groupId>commons-cli</groupId>
119 <artifactId>commons-cli</artifactId>
120 </dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200121 <dependency>
122 <groupId>io.netty</groupId>
123 <artifactId>netty-tcnative-boringssl-static</artifactId>
124 <scope>runtime</scope>
125 <classifier>${os.detected.classifier}</classifier>
126 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200127 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200128 <groupId>io.micrometer</groupId>
129 <artifactId>micrometer-registry-jmx</artifactId>
130 </dependency>
131 <dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200132 <groupId>org.assertj</groupId>
133 <artifactId>assertj-core</artifactId>
134 </dependency>
135 <dependency>
136 <groupId>org.jetbrains.kotlin</groupId>
137 <artifactId>kotlin-test</artifactId>
138 </dependency>
139 <dependency>
140 <groupId>org.jetbrains.spek</groupId>
141 <artifactId>spek-api</artifactId>
142 </dependency>
143 <dependency>
144 <groupId>org.jetbrains.spek</groupId>
145 <artifactId>spek-junit-platform-engine</artifactId>
146 </dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200147 <dependency>
148 <groupId>com.nhaarman</groupId>
149 <artifactId>mockito-kotlin</artifactId>
150 </dependency>
151 <dependency>
152 <groupId>org.mockito</groupId>
153 <artifactId>mockito-core</artifactId>
154 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200155 </dependencies>
156
157
158</project>