blob: 80d723314122a2f5029c0ce85f336eab438c3b4e [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 ~ ================================================================================
6 ~ Copyright (C) 2018 NOKIA Intellectual Property. All rights reserved.
7 ~ ================================================================================
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"
fkrzywka4b8cfb32018-06-01 12:45:22 +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>
fkrzywka4b8cfb32018-06-01 12:45:22 +020058 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-dependency-plugin</artifactId>
61 <executions>
62 <execution>
63 <id>copy-internal-deps</id>
64 <phase>package</phase>
65 <goals>
66 <goal>copy-dependencies</goal>
67 </goals>
68 <configuration>
69 <outputDirectory>${project.build.directory}/libs/internal</outputDirectory>
70 <includeGroupIds>${project.parent.groupId}</includeGroupIds>
71 <includeScope>runtime</includeScope>
72 </configuration>
73 </execution>
74 <execution>
75 <id>copy-external-deps</id>
76 <phase>package</phase>
77 <goals>
78 <goal>copy-dependencies</goal>
79 </goals>
80 <configuration>
81 <outputDirectory>${project.build.directory}/libs/external</outputDirectory>
82 <excludeGroupIds>${project.parent.groupId}</excludeGroupIds>
83 <includeScope>runtime</includeScope>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 <plugin>
89 <groupId>io.fabric8</groupId>
90 <artifactId>docker-maven-plugin</artifactId>
91 </plugin>
Piotr Jaszczyke98fdcc2018-04-26 09:17:09 +020092 </plugins>
93 </build>
94
95 <dependencies>
96 <dependency>
97 <groupId>${project.parent.groupId}</groupId>
98 <artifactId>hv-collector-core</artifactId>
99 <version>${project.parent.version}</version>
100 </dependency>
101
102 <dependency>
103 <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>
110 <dependency>
111 <groupId>commons-cli</groupId>
112 <artifactId>commons-cli</artifactId>
113 </dependency>
114
115 <dependency>
116 <groupId>org.assertj</groupId>
117 <artifactId>assertj-core</artifactId>
118 </dependency>
119 <dependency>
120 <groupId>org.jetbrains.kotlin</groupId>
121 <artifactId>kotlin-test</artifactId>
122 </dependency>
123 <dependency>
124 <groupId>org.jetbrains.spek</groupId>
125 <artifactId>spek-api</artifactId>
126 </dependency>
127 <dependency>
128 <groupId>org.jetbrains.spek</groupId>
129 <artifactId>spek-junit-platform-engine</artifactId>
130 </dependency>
131 </dependencies>
132
133
134</project>