Introduced yaml parser as common lib
[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.4.0-SNAPSHOT</version>
11   </parent>
12
13   <artifactId>onap-generic-artifact-browser-service</artifactId>
14
15   <properties>
16     <junit.version>5.4.0</junit.version>
17     <maven-surefire-plugin.version>2.22.1</maven-surefire-plugin.version>
18     <lombok.version>1.18.2</lombok.version>
19     <snakeyaml.version>1.21</snakeyaml.version>
20     <jsurfer.version>1.4.3</jsurfer.version>
21   </properties>
22
23   <dependencies>
24     <dependency>
25       <groupId>org.projectlombok</groupId>
26       <artifactId>lombok</artifactId>
27       <version>${lombok.version}</version>
28       <scope>provided</scope>
29     </dependency>
30     <dependency>
31       <groupId>org.yaml</groupId>
32       <artifactId>snakeyaml</artifactId>
33       <version>${snakeyaml.version}</version>
34     </dependency>
35     <dependency>
36       <groupId>com.google.code.gson</groupId>
37       <artifactId>gson</artifactId>
38       <version>${gson.version}</version>
39     </dependency>
40     <dependency>
41       <groupId>com.github.jsurfer</groupId>
42       <artifactId>jsurfer-gson</artifactId>
43       <version>${jsurfer.version}</version>
44     </dependency>
45     <dependency>
46       <groupId>com.google.guava</groupId>
47       <artifactId>guava</artifactId>
48       <version>${guava.version}</version>
49     </dependency>
50     <dependency>
51       <groupId>commons-io</groupId>
52       <artifactId>commons-io</artifactId>
53       <version>${commons.io.version}</version>
54     </dependency>
55
56
57     <!--test-->
58     <dependency>
59       <groupId>org.junit.jupiter</groupId>
60       <artifactId>junit-jupiter-api</artifactId>
61       <version>${junit.version}</version>
62       <scope>test</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.hamcrest</groupId>
66       <artifactId>hamcrest-all</artifactId>
67       <version>${hamcrest-all.version}</version>
68       <scope>test</scope>
69     </dependency>
70     <dependency>
71       <groupId>org.junit.jupiter</groupId>
72       <artifactId>junit-jupiter-engine</artifactId>
73       <version>${junit.version}</version>
74       <scope>test</scope>
75     </dependency>
76   </dependencies>
77
78   <build>
79     <pluginManagement>
80       <plugins>
81         <plugin>
82           <groupId>org.apache.maven.plugins</groupId>
83           <artifactId>maven-surefire-plugin</artifactId>
84           <version>${maven-surefire-plugin.version}</version>
85           <configuration>
86             <forkMode>once</forkMode>
87           </configuration>
88         </plugin>
89       </plugins>
90     </pluginManagement>
91     <plugins>
92       <plugin>
93         <groupId>org.apache.maven.plugins</groupId>
94         <artifactId>maven-compiler-plugin</artifactId>
95         <configuration>
96           <source>8</source>
97           <target>8</target>
98         </configuration>
99       </plugin>
100     </plugins>
101   </build>
102
103 </project>