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 | |
| 15 | <properties> |
| 16 | <skipAnalysis>false</skipAnalysis> |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 17 | </properties> |
| 18 | |
| 19 | <parent> |
Piotr Jaszczyk | ae63393 | 2018-08-21 08:28:54 +0200 | [diff] [blame] | 20 | <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId> |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 21 | <artifactId>ves-hv-collector</artifactId> |
Jakub Dudycz | 4aa75b5 | 2018-11-15 13:45:44 +0100 | [diff] [blame^] | 22 | <version>1.0.2-SNAPSHOT</version> |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 23 | <relativePath>..</relativePath> |
| 24 | </parent> |
| 25 | |
| 26 | <artifactId>hv-collector-health-check</artifactId> |
| 27 | <description>VES HighVolume Collector :: Health check</description> |
| 28 | |
| 29 | <build> |
| 30 | <plugins> |
| 31 | <plugin> |
| 32 | <artifactId>kotlin-maven-plugin</artifactId> |
| 33 | <groupId>org.jetbrains.kotlin</groupId> |
| 34 | </plugin> |
| 35 | <plugin> |
| 36 | <artifactId>maven-surefire-plugin</artifactId> |
| 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | </plugin> |
| 39 | </plugins> |
| 40 | </build> |
| 41 | |
| 42 | <dependencies> |
| 43 | <dependency> |
Jakub Dudycz | 67702df | 2018-08-08 09:17:14 +0200 | [diff] [blame] | 44 | <groupId>${project.parent.groupId}</groupId> |
| 45 | <artifactId>hv-collector-utils</artifactId> |
| 46 | <version>${project.parent.version}</version> |
| 47 | </dependency> |
| 48 | <dependency> |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 49 | <groupId>org.jetbrains.kotlin</groupId> |
| 50 | <artifactId>kotlin-stdlib-jdk8</artifactId> |
| 51 | </dependency> |
| 52 | <dependency> |
Piotr Jaszczyk | 5e93c1e | 2018-08-14 12:52:28 +0200 | [diff] [blame] | 53 | <groupId>io.projectreactor.ipc</groupId> |
| 54 | <artifactId>reactor-netty</artifactId> |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>io.arrow-kt</groupId> |
| 58 | <artifactId>arrow-effects</artifactId> |
| 59 | </dependency> |
Jakub Dudycz | 67702df | 2018-08-08 09:17:14 +0200 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>org.jetbrains.kotlin</groupId> |
| 62 | <artifactId>kotlin-test</artifactId> |
| 63 | <scope>test</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.jetbrains.spek</groupId> |
| 67 | <artifactId>spek-api</artifactId> |
| 68 | <scope>test</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.jetbrains.spek</groupId> |
| 72 | <artifactId>spek-junit-platform-engine</artifactId> |
| 73 | <scope>test</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>io.projectreactor</groupId> |
| 77 | <artifactId>reactor-test</artifactId> |
| 78 | <scope>test</scope> |
| 79 | </dependency> |
Jakub Dudycz | dd827e2 | 2018-08-07 14:18:37 +0200 | [diff] [blame] | 80 | </dependencies> |
| 81 | </project> |