2e880295f78097d7f0b25cd7732a0c5606cf36e1
[sdc.git] / common / onap-generic-artifact-browser / onap-generic-artifact-browser-service / 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     <groupId>org.onap.sdc.common</groupId>
9     <artifactId>onap-generic-artifact-browser</artifactId>
10     <version>1.7.0-SNAPSHOT</version>
11   </parent>
12
13   <artifactId>onap-generic-artifact-browser-service</artifactId>
14
15   <properties>
16     <snakeyaml.version>1.21</snakeyaml.version>
17     <jsurfer.version>1.4.3</jsurfer.version>
18     <jacoco.skip>false</jacoco.skip>
19   </properties>
20
21   <dependencies>
22     <!--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
36     <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
68     <!--test-->
69     <dependency>
70       <groupId>org.hamcrest</groupId>
71       <artifactId>hamcrest-all</artifactId>
72       <version>${hamcrest-all.version}</version>
73       <scope>test</scope>
74     </dependency>
75
76     <dependency>
77       <groupId>org.junit.jupiter</groupId>
78       <artifactId>junit-jupiter</artifactId>
79       <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>
87       <scope>test</scope>
88     </dependency>
89   </dependencies>
90
91   <build>
92     <plugins>
93       <plugin>
94         <groupId>org.apache.maven.plugins</groupId>
95         <artifactId>maven-surefire-plugin</artifactId>
96         <version>${maven-surefire-plugin.version}</version>
97       </plugin>
98     </plugins>
99   </build>
100
101 </project>