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