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