49b608df391baab74a9acfb028fc1fce46d6f24d
[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.4.1-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.assertj</groupId>
41       <artifactId>assertj-core</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.jetbrains.spek</groupId>
46       <artifactId>spek-api</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.jetbrains.spek</groupId>
51       <artifactId>spek-junit-platform-engine</artifactId>
52       <scope>test</scope>
53     </dependency>
54   </dependencies>
55 </project>