078a3cb5f0e46ee1950986e26f58989eac5777e5
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-commandline / pom.xml
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   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <artifactId>hv-collector-sources</artifactId>
9     <groupId>org.onap.dcaegen2.collectors.hv-ves</groupId>
10     <version>1.1.0-SNAPSHOT</version>
11   </parent>
12
13   <artifactId>hv-collector-commandline</artifactId>
14   <description>VES HighVolume Collector :: Command Line</description>
15
16   <build>
17     <plugins>
18       <plugin>
19         <artifactId>kotlin-maven-plugin</artifactId>
20         <groupId>org.jetbrains.kotlin</groupId>
21       </plugin>
22       <plugin>
23         <artifactId>maven-surefire-plugin</artifactId>
24         <groupId>org.apache.maven.plugins</groupId>
25       </plugin>
26     </plugins>
27   </build>
28
29   <dependencies>
30     <dependency>
31       <groupId>${project.parent.groupId}</groupId>
32       <artifactId>hv-collector-utils</artifactId>
33       <version>${project.parent.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>commons-cli</groupId>
37       <artifactId>commons-cli</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.jetbrains.kotlin</groupId>
41       <artifactId>kotlin-reflect</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.assertj</groupId>
45       <artifactId>assertj-core</artifactId>
46       <scope>test</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.jetbrains.kotlin</groupId>
50       <artifactId>kotlin-test</artifactId>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.jetbrains.spek</groupId>
55       <artifactId>spek-api</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.jetbrains.spek</groupId>
60       <artifactId>spek-junit-platform-engine</artifactId>
61       <scope>test</scope>
62     </dependency>
63   </dependencies>
64 </project>