blob: d99bf8555c38a807fe845812495bd44e713e4ec5 [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 Jaszczykdde383a2018-11-28 15:46:50 +010035 <artifactId>hv-collector-sources</artifactId>
Piotr Jaszczyk4d15e5a2018-11-07 15:08:43 +010036 <version>1.1.0-SNAPSHOT</version>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020037 </parent>
38
39 <artifactId>hv-collector-main</artifactId>
40 <description>VES HighVolume Collector :: Main</description>
41
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020042 <build>
43 <plugins>
44 <plugin>
45 <artifactId>kotlin-maven-plugin</artifactId>
46 <groupId>org.jetbrains.kotlin</groupId>
47 </plugin>
48 <plugin>
49 <artifactId>maven-surefire-plugin</artifactId>
50 <groupId>org.apache.maven.plugins</groupId>
51 </plugin>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020052 </plugins>
53 </build>
54
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020055 <profiles>
56 <profile>
57 <id>docker</id>
58 <activation>
59 <property>
60 <name>!skipDocker</name>
61 </property>
62 </activation>
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-dependency-plugin</artifactId>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020068 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020069 <plugin>
70 <groupId>io.fabric8</groupId>
71 <artifactId>docker-maven-plugin</artifactId>
72 </plugin>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020073 </plugins>
74 </build>
75 </profile>
76 </profiles>
77
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020078 <dependencies>
79 <dependency>
Filip Krzywka007480c2019-03-12 11:50:37 +010080 <groupId>${project.groupId}</groupId>
81 <artifactId>hv-collector-configuration</artifactId>
82 <version>${project.version}</version>
83 </dependency>
84 <dependency>
85 <groupId>${project.groupId}</groupId>
kjaniak49f43c82019-04-03 15:48:28 +020086 <artifactId>hv-collector-health-check</artifactId>
Filip Krzywka007480c2019-03-12 11:50:37 +010087 <version>${project.version}</version>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020088 </dependency>
fkrzywka185bc702018-07-31 14:26:09 +020089 <dependency>
Filip Krzywka007480c2019-03-12 11:50:37 +010090 <groupId>${project.groupId}</groupId>
kjaniak49f43c82019-04-03 15:48:28 +020091 <artifactId>hv-collector-server</artifactId>
Filip Krzywka007480c2019-03-12 11:50:37 +010092 <version>${project.version}</version>
fkrzywka185bc702018-07-31 14:26:09 +020093 </dependency>
Jakub Dudyczdd827e22018-08-07 14:18:37 +020094 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +020095 <groupId>io.arrow-kt</groupId>
Piotr Jaszczykc775e862019-04-03 15:07:22 +020096 <artifactId>arrow-core-data</artifactId>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +020097 </dependency>
98 <dependency>
99 <groupId>io.arrow-kt</groupId>
100 <artifactId>arrow-syntax</artifactId>
101 </dependency>
102 <dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200103 <groupId>org.slf4j</groupId>
104 <artifactId>slf4j-api</artifactId>
105 </dependency>
106 <dependency>
107 <groupId>ch.qos.logback</groupId>
108 <artifactId>logback-classic</artifactId>
109 </dependency>
Piotr Jaszczyk069dcc12018-09-20 12:04:03 +0200110 <!-- See comment in main pom
111 <dependency>
112 <groupId>io.netty</groupId>
113 <artifactId>netty-transport-native-epoll</artifactId>
114 <classifier>${os.detected.classifier}</classifier>
115 </dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200116 <dependency>
117 <groupId>io.netty</groupId>
118 <artifactId>netty-tcnative-boringssl-static</artifactId>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200119 <classifier>${os.detected.classifier}</classifier>
120 </dependency>
Piotr Jaszczyk069dcc12018-09-20 12:04:03 +0200121 -->
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200122 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200123 <groupId>io.micrometer</groupId>
Piotr Jaszczyk62fc38c2018-12-12 09:07:05 +0100124 <artifactId>micrometer-registry-prometheus</artifactId>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200125 </dependency>
pbinieke9220922019-02-27 23:31:15 +0100126 <dependency>
Filip Krzywka007480c2019-03-12 11:50:37 +0100127 <groupId>${project.groupId}</groupId>
128 <artifactId>hv-collector-test-utils</artifactId>
129 <version>${project.version}</version>
130 <scope>test</scope>
pbinieke9220922019-02-27 23:31:15 +0100131 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200132 </dependencies>
133
134
135</project>