blob: edbdaa36f3a8e0d3b928a17a18b1da60b9c76f72 [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>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020086 <artifactId>hv-collector-core</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>
Jakub Dudyczdd827e22018-08-07 14:18:37 +020091 <artifactId>hv-collector-health-check</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>
96 <artifactId>arrow-core</artifactId>
97 </dependency>
98 <dependency>
99 <groupId>io.arrow-kt</groupId>
Piotr Jaszczyk0bfbf812018-11-06 10:09:32 +0100100 <artifactId>arrow-effects-instances</artifactId>
101 </dependency>
102 <dependency>
103 <groupId>io.arrow-kt</groupId>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200104 <artifactId>arrow-syntax</artifactId>
105 </dependency>
106 <dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200107 <groupId>org.slf4j</groupId>
108 <artifactId>slf4j-api</artifactId>
109 </dependency>
110 <dependency>
111 <groupId>ch.qos.logback</groupId>
112 <artifactId>logback-classic</artifactId>
113 </dependency>
Piotr Jaszczyk069dcc12018-09-20 12:04:03 +0200114 <!-- See comment in main pom
115 <dependency>
116 <groupId>io.netty</groupId>
117 <artifactId>netty-transport-native-epoll</artifactId>
118 <classifier>${os.detected.classifier}</classifier>
119 </dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200120 <dependency>
121 <groupId>io.netty</groupId>
122 <artifactId>netty-tcnative-boringssl-static</artifactId>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200123 <classifier>${os.detected.classifier}</classifier>
124 </dependency>
Piotr Jaszczyk069dcc12018-09-20 12:04:03 +0200125 -->
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200126 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200127 <groupId>io.micrometer</groupId>
Piotr Jaszczyk62fc38c2018-12-12 09:07:05 +0100128 <artifactId>micrometer-registry-prometheus</artifactId>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200129 </dependency>
pbinieke9220922019-02-27 23:31:15 +0100130 <dependency>
Filip Krzywka007480c2019-03-12 11:50:37 +0100131 <groupId>${project.groupId}</groupId>
132 <artifactId>hv-collector-test-utils</artifactId>
133 <version>${project.version}</version>
134 <scope>test</scope>
pbinieke9220922019-02-27 23:31:15 +0100135 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200136 </dependencies>
137
138
139</project>