Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | |
| 6 | <modelVersion>4.0.0</modelVersion> |
| 7 | |
| 8 | <licenses> |
| 9 | <license> |
| 10 | <name>The Apache Software License, Version 2.0</name> |
| 11 | <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| 12 | </license> |
| 13 | </licenses> |
| 14 | |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 15 | <parent> |
Piotr Jaszczyk | ae63393 | 2018-08-21 08:28:54 +0200 | [diff] [blame] | 16 | <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId> |
Piotr Jaszczyk | dde383a | 2018-11-28 15:46:50 +0100 | [diff] [blame] | 17 | <artifactId>hv-collector-sources</artifactId> |
Piotr Jaszczyk | 4d15e5a | 2018-11-07 15:08:43 +0100 | [diff] [blame] | 18 | <version>1.1.0-SNAPSHOT</version> |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 19 | </parent> |
| 20 | |
| 21 | <artifactId>hv-collector-health-check</artifactId> |
| 22 | <description>VES HighVolume Collector :: Health check</description> |
| 23 | |
| 24 | <build> |
| 25 | <plugins> |
| 26 | <plugin> |
| 27 | <artifactId>kotlin-maven-plugin</artifactId> |
| 28 | <groupId>org.jetbrains.kotlin</groupId> |
| 29 | </plugin> |
| 30 | <plugin> |
| 31 | <artifactId>maven-surefire-plugin</artifactId> |
| 32 | <groupId>org.apache.maven.plugins</groupId> |
| 33 | </plugin> |
| 34 | </plugins> |
| 35 | </build> |
| 36 | |
| 37 | <dependencies> |
| 38 | <dependency> |
Jakub Dudycz | 67702df | 2018-08-08 09:17:14 +0200 | [diff] [blame] | 39 | <groupId>${project.parent.groupId}</groupId> |
| 40 | <artifactId>hv-collector-utils</artifactId> |
| 41 | <version>${project.parent.version}</version> |
| 42 | </dependency> |
| 43 | <dependency> |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 44 | <groupId>org.jetbrains.kotlin</groupId> |
| 45 | <artifactId>kotlin-stdlib-jdk8</artifactId> |
| 46 | </dependency> |
| 47 | <dependency> |
Piotr Jaszczyk | 4d15e5a | 2018-11-07 15:08:43 +0100 | [diff] [blame] | 48 | <groupId>io.projectreactor.netty</groupId> |
Piotr Jaszczyk | 5e93c1e | 2018-08-14 12:52:28 +0200 | [diff] [blame] | 49 | <artifactId>reactor-netty</artifactId> |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 50 | </dependency> |
| 51 | <dependency> |
Filip Krzywka | ea3c6f7 | 2018-12-12 08:11:30 +0100 | [diff] [blame] | 52 | <groupId>ch.qos.logback</groupId> |
| 53 | <artifactId>logback-classic</artifactId> |
| 54 | <scope>test</scope> |
| 55 | </dependency> |
Filip Krzywka | ea3c6f7 | 2018-12-12 08:11:30 +0100 | [diff] [blame] | 56 | <dependency> |
Jakub Dudycz | 67702df | 2018-08-08 09:17:14 +0200 | [diff] [blame] | 57 | <groupId>org.jetbrains.kotlin</groupId> |
| 58 | <artifactId>kotlin-test</artifactId> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.jetbrains.spek</groupId> |
| 63 | <artifactId>spek-api</artifactId> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.jetbrains.spek</groupId> |
| 68 | <artifactId>spek-junit-platform-engine</artifactId> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>io.projectreactor</groupId> |
| 73 | <artifactId>reactor-test</artifactId> |
| 74 | <scope>test</scope> |
| 75 | </dependency> |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 76 | </dependencies> |
| 77 | </project> |