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