blob: b3665dc875e7764f28624de48b4c4ccd828cc2b0 [file] [log] [blame]
Tomasz Golabek967a1202019-03-19 11:37:28 +01001<?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 <groupId>org.onap.sdc.common</groupId>
9 <artifactId>onap-generic-artifact-browser</artifactId>
Ofir Sonsino09d87892020-03-12 20:52:42 +020010 <version>1.7.0-SNAPSHOT</version>
Tomasz Golabek967a1202019-03-19 11:37:28 +010011 </parent>
12
13 <artifactId>onap-generic-artifact-browser-service</artifactId>
14
15 <properties>
Tomasz Golabek967a1202019-03-19 11:37:28 +010016 <snakeyaml.version>1.21</snakeyaml.version>
17 <jsurfer.version>1.4.3</jsurfer.version>
Tomasz Golabeka490dfc2019-04-23 16:26:08 +020018 <jacoco.skip>false</jacoco.skip>
Tomasz Golabek967a1202019-03-19 11:37:28 +010019 </properties>
20
21 <dependencies>
22 <dependency>
23 <groupId>org.projectlombok</groupId>
24 <artifactId>lombok</artifactId>
25 <version>${lombok.version}</version>
26 <scope>provided</scope>
27 </dependency>
28 <dependency>
29 <groupId>org.yaml</groupId>
30 <artifactId>snakeyaml</artifactId>
31 <version>${snakeyaml.version}</version>
32 </dependency>
33 <dependency>
34 <groupId>com.google.code.gson</groupId>
35 <artifactId>gson</artifactId>
36 <version>${gson.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>com.github.jsurfer</groupId>
40 <artifactId>jsurfer-gson</artifactId>
41 <version>${jsurfer.version}</version>
42 </dependency>
43 <dependency>
44 <groupId>com.google.guava</groupId>
45 <artifactId>guava</artifactId>
46 <version>${guava.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>commons-io</groupId>
50 <artifactId>commons-io</artifactId>
51 <version>${commons.io.version}</version>
52 </dependency>
53
Tomasz Golabek967a1202019-03-19 11:37:28 +010054 <!--test-->
55 <dependency>
Tomasz Golabek967a1202019-03-19 11:37:28 +010056 <groupId>org.hamcrest</groupId>
57 <artifactId>hamcrest-all</artifactId>
58 <version>${hamcrest-all.version}</version>
59 <scope>test</scope>
60 </dependency>
Baumel, Dvir (db384r)3e879322020-03-23 16:21:05 +020061
Tomasz Golabek967a1202019-03-19 11:37:28 +010062 <dependency>
63 <groupId>org.junit.jupiter</groupId>
Tomasz Golabeka490dfc2019-04-23 16:26:08 +020064 <artifactId>junit-jupiter</artifactId>
Baumel, Dvir (db384r)3e879322020-03-23 16:21:05 +020065 <version>${junitJupiter.version}</version>
66 <scope>test</scope>
67 </dependency>
68
69 <dependency>
70 <groupId>org.mockito</groupId>
71 <artifactId>mockito-junit-jupiter</artifactId>
72 <version>${mockitoJupiter.version}</version>
Tomasz Golabek04aecc52019-04-11 11:47:50 +020073 <scope>test</scope>
74 </dependency>
Tomasz Golabek967a1202019-03-19 11:37:28 +010075 </dependencies>
76
77 <build>
Tomasz Golabek967a1202019-03-19 11:37:28 +010078 <plugins>
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
Tomasz Golabeka490dfc2019-04-23 16:26:08 +020081 <artifactId>maven-surefire-plugin</artifactId>
82 <version>${maven-surefire-plugin.version}</version>
83 </plugin>
Tomasz Golabek967a1202019-03-19 11:37:28 +010084 </plugins>
85 </build>
86
87</project>