Entitlement Pool - Support Type Field
[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     <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
54     <!--test-->
55     <dependency>
56       <groupId>org.hamcrest</groupId>
57       <artifactId>hamcrest-all</artifactId>
58       <version>${hamcrest-all.version}</version>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.junit.jupiter</groupId>
63       <artifactId>junit-jupiter</artifactId>
64       <version>${junit-jupiter.version}</version>
65       <scope>test</scope>
66     </dependency>
67   </dependencies>
68
69   <build>
70     <plugins>
71       <plugin>
72         <groupId>org.apache.maven.plugins</groupId>
73         <artifactId>maven-surefire-plugin</artifactId>
74         <version>${maven-surefire-plugin.version}</version>
75       </plugin>
76     </plugins>
77   </build>
78
79 </project>