blob: dbec1def1886d55803c033d15fd19b16e85f48aa [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"
Piotr Jaszczyka4becf22018-05-29 13:35:11 +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>
34 <groupId>org.onap.dcaegen2.collectors.veshv</groupId>
35 <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 Jaszczyk94eeb732018-06-12 14:19:10 +020075 <!-- TODO: unskip docker
Piotr Jaszczyka4becf22018-05-29 13:35:11 +020076 <plugin>
77 <groupId>io.fabric8</groupId>
78 <artifactId>docker-maven-plugin</artifactId>
79 </plugin>
80 -->
81 </plugins>
82 </build>
83 </profile>
84 </profiles>
85
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020086 <dependencies>
87 <dependency>
88 <groupId>${project.parent.groupId}</groupId>
89 <artifactId>hv-collector-core</artifactId>
90 <version>${project.parent.version}</version>
91 </dependency>
92
93 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +020094 <groupId>io.arrow-kt</groupId>
95 <artifactId>arrow-core</artifactId>
96 </dependency>
97 <dependency>
98 <groupId>io.arrow-kt</groupId>
99 <artifactId>arrow-syntax</artifactId>
100 </dependency>
101 <dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200102 <groupId>org.slf4j</groupId>
103 <artifactId>slf4j-api</artifactId>
104 </dependency>
105 <dependency>
106 <groupId>ch.qos.logback</groupId>
107 <artifactId>logback-classic</artifactId>
108 </dependency>
109 <dependency>
110 <groupId>commons-cli</groupId>
111 <artifactId>commons-cli</artifactId>
112 </dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200113 <dependency>
114 <groupId>io.netty</groupId>
115 <artifactId>netty-tcnative-boringssl-static</artifactId>
116 <scope>runtime</scope>
117 <classifier>${os.detected.classifier}</classifier>
118 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200119 <dependency>
Piotr Jaszczyk0ba97c72018-06-13 15:45:00 +0200120 <groupId>io.micrometer</groupId>
121 <artifactId>micrometer-registry-jmx</artifactId>
122 </dependency>
123 <dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200124 <groupId>org.assertj</groupId>
125 <artifactId>assertj-core</artifactId>
126 </dependency>
127 <dependency>
128 <groupId>org.jetbrains.kotlin</groupId>
129 <artifactId>kotlin-test</artifactId>
130 </dependency>
131 <dependency>
132 <groupId>org.jetbrains.spek</groupId>
133 <artifactId>spek-api</artifactId>
134 </dependency>
135 <dependency>
136 <groupId>org.jetbrains.spek</groupId>
137 <artifactId>spek-junit-platform-engine</artifactId>
138 </dependency>
Piotr Jaszczyka4becf22018-05-29 13:35:11 +0200139 <dependency>
140 <groupId>com.nhaarman</groupId>
141 <artifactId>mockito-kotlin</artifactId>
142 </dependency>
143 <dependency>
144 <groupId>org.mockito</groupId>
145 <artifactId>mockito-core</artifactId>
146 </dependency>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +0200147 </dependencies>
148
149
150</project>