blob: 2e880295f78097d7f0b25cd7732a0c5606cf36e1 [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>
vasraza36531c2020-04-29 18:39:35 +010022 <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
23 <dependency>
24 <groupId>org.junit.jupiter</groupId>
25 <artifactId>junit-jupiter-engine</artifactId>
26 <version>${junitJupiter.version}</version>
27 <scope>test</scope>
28 </dependency>
29 <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API -->
30 <dependency>
31 <groupId>org.junit.vintage</groupId>
32 <artifactId>junit-vintage-engine</artifactId>
33 <version>${junitJupiter.version}</version>
34 </dependency>
35
Tomasz Golabek967a1202019-03-19 11:37:28 +010036 <dependency>
37 <groupId>org.projectlombok</groupId>
38 <artifactId>lombok</artifactId>
39 <version>${lombok.version}</version>
40 <scope>provided</scope>
41 </dependency>
42 <dependency>
43 <groupId>org.yaml</groupId>
44 <artifactId>snakeyaml</artifactId>
45 <version>${snakeyaml.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>com.google.code.gson</groupId>
49 <artifactId>gson</artifactId>
50 <version>${gson.version}</version>
51 </dependency>
52 <dependency>
53 <groupId>com.github.jsurfer</groupId>
54 <artifactId>jsurfer-gson</artifactId>
55 <version>${jsurfer.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>com.google.guava</groupId>
59 <artifactId>guava</artifactId>
60 <version>${guava.version}</version>
61 </dependency>
62 <dependency>
63 <groupId>commons-io</groupId>
64 <artifactId>commons-io</artifactId>
65 <version>${commons.io.version}</version>
66 </dependency>
67
Tomasz Golabek967a1202019-03-19 11:37:28 +010068 <!--test-->
69 <dependency>
Tomasz Golabek967a1202019-03-19 11:37:28 +010070 <groupId>org.hamcrest</groupId>
71 <artifactId>hamcrest-all</artifactId>
72 <version>${hamcrest-all.version}</version>
73 <scope>test</scope>
74 </dependency>
Baumel, Dvir (db384r)3e879322020-03-23 16:21:05 +020075
Tomasz Golabek967a1202019-03-19 11:37:28 +010076 <dependency>
77 <groupId>org.junit.jupiter</groupId>
Tomasz Golabeka490dfc2019-04-23 16:26:08 +020078 <artifactId>junit-jupiter</artifactId>
Baumel, Dvir (db384r)3e879322020-03-23 16:21:05 +020079 <version>${junitJupiter.version}</version>
80 <scope>test</scope>
81 </dependency>
82
83 <dependency>
84 <groupId>org.mockito</groupId>
85 <artifactId>mockito-junit-jupiter</artifactId>
86 <version>${mockitoJupiter.version}</version>
Tomasz Golabek04aecc52019-04-11 11:47:50 +020087 <scope>test</scope>
88 </dependency>
Tomasz Golabek967a1202019-03-19 11:37:28 +010089 </dependencies>
90
91 <build>
Tomasz Golabek967a1202019-03-19 11:37:28 +010092 <plugins>
93 <plugin>
94 <groupId>org.apache.maven.plugins</groupId>
Tomasz Golabeka490dfc2019-04-23 16:26:08 +020095 <artifactId>maven-surefire-plugin</artifactId>
96 <version>${maven-surefire-plugin.version}</version>
97 </plugin>
Tomasz Golabek967a1202019-03-19 11:37:28 +010098 </plugins>
99 </build>
100
101</project>