blob: 5056341e29376174ece397d2524981ddfe27624c [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>
vasraza1bd2352020-05-06 23:57:53 +010034 <scope>test</scope>
vasraza36531c2020-04-29 18:39:35 +010035 </dependency>
36
Tomasz Golabek967a1202019-03-19 11:37:28 +010037 <dependency>
38 <groupId>org.projectlombok</groupId>
39 <artifactId>lombok</artifactId>
40 <version>${lombok.version}</version>
41 <scope>provided</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.yaml</groupId>
45 <artifactId>snakeyaml</artifactId>
46 <version>${snakeyaml.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>com.google.code.gson</groupId>
50 <artifactId>gson</artifactId>
51 <version>${gson.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>com.github.jsurfer</groupId>
55 <artifactId>jsurfer-gson</artifactId>
56 <version>${jsurfer.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>com.google.guava</groupId>
60 <artifactId>guava</artifactId>
61 <version>${guava.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>commons-io</groupId>
65 <artifactId>commons-io</artifactId>
66 <version>${commons.io.version}</version>
67 </dependency>
68
Tomasz Golabek967a1202019-03-19 11:37:28 +010069 <!--test-->
70 <dependency>
Tomasz Golabek967a1202019-03-19 11:37:28 +010071 <groupId>org.hamcrest</groupId>
72 <artifactId>hamcrest-all</artifactId>
73 <version>${hamcrest-all.version}</version>
74 <scope>test</scope>
75 </dependency>
Baumel, Dvir (db384r)3e879322020-03-23 16:21:05 +020076
Tomasz Golabek967a1202019-03-19 11:37:28 +010077 <dependency>
78 <groupId>org.junit.jupiter</groupId>
Tomasz Golabeka490dfc2019-04-23 16:26:08 +020079 <artifactId>junit-jupiter</artifactId>
Baumel, Dvir (db384r)3e879322020-03-23 16:21:05 +020080 <version>${junitJupiter.version}</version>
81 <scope>test</scope>
82 </dependency>
83
84 <dependency>
85 <groupId>org.mockito</groupId>
86 <artifactId>mockito-junit-jupiter</artifactId>
87 <version>${mockitoJupiter.version}</version>
Tomasz Golabek04aecc52019-04-11 11:47:50 +020088 <scope>test</scope>
89 </dependency>
Tomasz Golabek967a1202019-03-19 11:37:28 +010090 </dependencies>
91
92 <build>
Tomasz Golabek967a1202019-03-19 11:37:28 +010093 <plugins>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
Tomasz Golabeka490dfc2019-04-23 16:26:08 +020096 <artifactId>maven-surefire-plugin</artifactId>
97 <version>${maven-surefire-plugin.version}</version>
98 </plugin>
Tomasz Golabek967a1202019-03-19 11:37:28 +010099 </plugins>
100 </build>
101
102</project>