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