blob: 2fe814eb727dbf890bc9742b04830284988dfdcb [file] [log] [blame]
Timoney, Dan (dt5972)fe8d3bc2019-01-18 16:51:25 -05001<?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">
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -04003 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
Soumendu Sekhar Acharyacc49cb72018-08-07 15:23:28 +05306 <artifactId>configbackuprestore</artifactId>
Timoney, Dan (dt5972)1bd7bcb2018-10-23 16:23:03 -04007 <version>1.5.0-SNAPSHOT</version>
Soumendu Sekhar Acharyacc49cb72018-08-07 15:23:28 +05308 </parent>
Timoney, Dan (dt5972)2fdd9512018-09-13 14:39:25 -04009 <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040010 <artifactId>vnfconfigreportsservice</artifactId>
Timoney, Dan (dt5972)1bd7bcb2018-10-23 16:23:03 -040011 <version>1.5.0-SNAPSHOT</version>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040012 <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>
Soumendu Sekhar Acharyacc49cb72018-08-07 15:23:28 +053018 <dependency>
19 <groupId>junit</groupId>
20 <artifactId>junit</artifactId>
21 <version>4.11</version>
22 <scope>test</scope>
23 </dependency>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040024
Soumendu Sekhar Acharyacc49cb72018-08-07 15:23:28 +053025 <dependency>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -040026 <groupId>javax.servlet</groupId>
27 <artifactId>jstl</artifactId>
28 <scope>provided</scope>
29 </dependency>
30
Soumendu Sekhar Acharyacc49cb72018-08-07 15:23:28 +053031 <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>
Timoney, Dan (dt5972)42ef3e42018-09-13 12:11:35 -0400103 <dependency>
104 <groupId>org.mockito</groupId>
105 <artifactId>mockito-all</artifactId>
106 <version>1.9.5</version>
107 <scope>test</scope>
108 </dependency>
Soumendu Sekhar Acharyacc49cb72018-08-07 15:23:28 +0530109 </dependencies>
110</project>