Piotr Jaszczyk | e98fdcc | 2018-04-26 09:17:09 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ~ ============LICENSE_START======================================================= |
| 4 | ~ dcaegen2-collectors-veshv |
| 5 | ~ ================================================================================ |
fkrzywka | e74c9e1 | 2018-06-06 10:43:53 +0200 | [diff] [blame] | 6 | ~ Copyright (C) 2018 NOKIA |
Piotr Jaszczyk | e98fdcc | 2018-04-26 09:17:09 +0200 | [diff] [blame] | 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" |
Piotr Jaszczyk | a4becf2 | 2018-05-29 13:35:11 +0200 | [diff] [blame] | 22 | 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 Jaszczyk | e98fdcc | 2018-04-26 09:17:09 +0200 | [diff] [blame] | 24 | <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> |
fkrzywka | 4b8cfb3 | 2018-06-01 12:45:22 +0200 | [diff] [blame] | 45 | <docker-image.name>ves-hv-collector</docker-image.name> |
Piotr Jaszczyk | e98fdcc | 2018-04-26 09:17:09 +0200 | [diff] [blame] | 46 | </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 Jaszczyk | e98fdcc | 2018-04-26 09:17:09 +0200 | [diff] [blame] | 58 | </plugins> |
| 59 | </build> |
| 60 | |
Piotr Jaszczyk | a4becf2 | 2018-05-29 13:35:11 +0200 | [diff] [blame] | 61 | <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 Jaszczyk | a4becf2 | 2018-05-29 13:35:11 +0200 | [diff] [blame] | 74 | </plugin> |
Piotr Jaszczyk | 94eeb73 | 2018-06-12 14:19:10 +0200 | [diff] [blame] | 75 | <!-- TODO: unskip docker |
Piotr Jaszczyk | a4becf2 | 2018-05-29 13:35:11 +0200 | [diff] [blame] | 76 | <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 Jaszczyk | e98fdcc | 2018-04-26 09:17:09 +0200 | [diff] [blame] | 86 | <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 Jaszczyk | 0ba97c7 | 2018-06-13 15:45:00 +0200 | [diff] [blame^] | 94 | <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 Jaszczyk | e98fdcc | 2018-04-26 09:17:09 +0200 | [diff] [blame] | 102 | <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 Jaszczyk | a4becf2 | 2018-05-29 13:35:11 +0200 | [diff] [blame] | 113 | <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 Jaszczyk | e98fdcc | 2018-04-26 09:17:09 +0200 | [diff] [blame] | 119 | <dependency> |
Piotr Jaszczyk | 0ba97c7 | 2018-06-13 15:45:00 +0200 | [diff] [blame^] | 120 | <groupId>io.micrometer</groupId> |
| 121 | <artifactId>micrometer-registry-jmx</artifactId> |
| 122 | </dependency> |
| 123 | <dependency> |
Piotr Jaszczyk | e98fdcc | 2018-04-26 09:17:09 +0200 | [diff] [blame] | 124 | <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 Jaszczyk | a4becf2 | 2018-05-29 13:35:11 +0200 | [diff] [blame] | 139 | <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 Jaszczyk | e98fdcc | 2018-04-26 09:17:09 +0200 | [diff] [blame] | 147 | </dependencies> |
| 148 | |
| 149 | |
| 150 | </project> |