Chore: Add gerrit maven verify GHA workflow
[sdnc/oam.git] / configbackuprestore / vnfconfigreportsservice / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
7         <artifactId>configbackuprestore</artifactId>
8         <version>2.2.0-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
12     <artifactId>vnfconfigreportsservice</artifactId>
13     <version>2.2.0-SNAPSHOT</version>
14
15     <name>sdnc-oam :: vnfbackup :: vnfconfigreportservice</name>
16     <url>http://maven.apache.org</url>
17
18     <properties>
19         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20     </properties>
21
22     <dependencies>
23         <dependency>
24             <groupId>junit</groupId>
25             <artifactId>junit</artifactId>
26             <version>4.11</version>
27             <scope>test</scope>
28         </dependency>
29
30         <dependency>
31             <groupId>javax.servlet</groupId>
32             <artifactId>jstl</artifactId>
33             <scope>provided</scope>
34         </dependency>
35
36         <dependency>
37             <groupId>org.mariadb.jdbc</groupId>
38             <artifactId>mariadb-java-client</artifactId>
39             <version>1.1.9</version>
40         </dependency>
41         <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
42         <dependency>
43             <groupId>commons-codec</groupId>
44             <artifactId>commons-codec</artifactId>
45             <version>1.9</version>
46         </dependency>
47
48         <dependency>
49             <groupId>org.springframework.boot</groupId>
50             <artifactId>spring-boot-starter-web</artifactId>
51             <version>1.5.4.RELEASE</version>
52         </dependency>
53
54         <dependency>
55             <groupId>org.springframework</groupId>
56             <artifactId>spring-context</artifactId>
57             <version>4.3.9.RELEASE</version>
58         </dependency>
59
60         <dependency>
61             <groupId>org.springframework.boot</groupId>
62             <artifactId>spring-boot-starter-tomcat</artifactId>
63             <scope>provided</scope>
64         </dependency>
65
66         <dependency>
67             <groupId>org.apache.tomcat.embed</groupId>
68             <artifactId>tomcat-embed-jasper</artifactId>
69             <scope>provided</scope>
70         </dependency>
71
72
73         <dependency>
74             <groupId>org.springframework.boot</groupId>
75             <artifactId>spring-boot-devtools</artifactId>
76             <optional>true</optional>
77         </dependency>
78
79         <dependency>
80             <groupId>org.springframework.boot</groupId>
81             <artifactId>spring-boot-starter-test</artifactId>
82             <version>1.5.3.RELEASE</version>
83             <scope>test</scope>
84         </dependency>
85
86         <dependency>
87             <groupId>org.springframework.boot</groupId>
88             <artifactId>spring-boot-starter-data-jpa</artifactId>
89         </dependency>
90
91         <!-- Add Log4j2 Dependency -->
92         <dependency>
93             <groupId>org.springframework.boot</groupId>
94             <artifactId>spring-boot-starter-log4j2</artifactId>
95         </dependency>
96
97         <dependency>
98             <groupId>org.json</groupId>
99             <artifactId>json</artifactId>
100             <version>20180130</version>
101         </dependency>
102         <!-- https://mvnrepository.com/artifact/com.fasterxml/jackson-xml-databind -->
103         <dependency>
104             <groupId>com.fasterxml</groupId>
105             <artifactId>jackson-xml-databind</artifactId>
106             <version>0.6.2</version>
107         </dependency>
108         <dependency>
109             <groupId>org.mockito</groupId>
110             <artifactId>mockito-all</artifactId>
111             <version>1.9.5</version>
112             <scope>test</scope>
113         </dependency>
114     </dependencies>
115 </project>