Create new version of sdnc/oam for ansible fix
[sdnc/oam.git] / configbackuprestore / vnfconfigbackupservice / 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         
4         <modelVersion>4.0.0</modelVersion>
5         
6         <parent>
7                 <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
8                 <artifactId>configbackuprestore</artifactId>
9                 <version>1.4.5-SNAPSHOT</version>
10         </parent>
11         
12         <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
13         <artifactId>vnfconfigbackupservice</artifactId>
14         <version>1.4.5-SNAPSHOT</version>
15         <name>sdnc-oam :: vnfbackup :: vnfconfigbackupservice</name>
16         <url>http://maven.apache.org</url>
17         
18         <dependencies>
19         
20                 <dependency>
21                         <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
22                         <artifactId>getBackupVnfDetailService</artifactId>
23                         <version>1.4.5-SNAPSHOT</version>
24                 </dependency>
25                 
26                 <dependency>
27                         <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
28                         <artifactId>vnfconfigreportsservice</artifactId>
29                         <version>1.4.5-SNAPSHOT</version>
30                 </dependency>
31                 
32                 <dependency>
33                         <groupId>org.jmockit</groupId>
34                         <artifactId>jmockit</artifactId>
35                         <version>1.19</version>
36                         <scope>test</scope>
37                 </dependency>
38
39                 <dependency>
40                         <groupId>org.jmockit</groupId>
41                         <artifactId>jmockit-coverage</artifactId>
42                         <version>1.19</version>
43                         <scope>test</scope>
44                 </dependency>
45                 
46                 <dependency>
47                         <groupId>junit</groupId>
48                         <artifactId>junit</artifactId>
49                         <version>4.9</version>
50                         <scope>test</scope>
51                 </dependency>
52
53                 <dependency>
54                         <groupId>javax.servlet</groupId>
55                         <artifactId>jstl</artifactId>
56                         <scope>provided</scope>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>org.mariadb.jdbc</groupId>
61                         <artifactId>mariadb-java-client</artifactId>
62                         <version>1.1.9</version>
63                 </dependency>
64                 
65                 <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
66                 <dependency>
67                         <groupId>commons-codec</groupId>
68                         <artifactId>commons-codec</artifactId>
69                         <version>1.9</version>
70                 </dependency>
71
72                 <dependency>
73                         <groupId>org.springframework.boot</groupId>
74                         <artifactId>spring-boot-starter-web</artifactId>
75                         <version>1.5.4.RELEASE</version>
76                 </dependency>
77
78                 <dependency>
79                         <groupId>org.springframework</groupId>
80                         <artifactId>spring-context</artifactId>
81                         <version>4.3.9.RELEASE</version>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>org.springframework.boot</groupId>
86                         <artifactId>spring-boot-starter-tomcat</artifactId>
87                         <scope>provided</scope>
88                 </dependency>
89
90                 <dependency>
91                         <groupId>org.apache.tomcat.embed</groupId>
92                         <artifactId>tomcat-embed-jasper</artifactId>
93                         <scope>provided</scope>
94                 </dependency>
95
96                 <dependency>
97                         <groupId>org.springframework.boot</groupId>
98                         <artifactId>spring-boot-devtools</artifactId>
99                         <optional>true</optional>
100                 </dependency>
101
102                 <dependency>
103                         <groupId>org.springframework.boot</groupId>
104                         <artifactId>spring-boot-starter-test</artifactId>
105                         <scope>test</scope>
106                         <version>1.5.3.RELEASE</version>
107                 </dependency>
108
109                 <dependency>
110                         <groupId>org.springframework.boot</groupId>
111                         <artifactId>spring-boot-starter-data-jpa</artifactId>
112                 </dependency>
113
114                 <!-- Add Log4j2 Dependency -->
115                 <dependency>
116                         <groupId>org.springframework.boot</groupId>
117                         <artifactId>spring-boot-starter-log4j2</artifactId>
118                 </dependency>
119
120                 <dependency>
121                         <groupId>org.json</groupId>
122                         <artifactId>json</artifactId>
123                         <version>20180130</version>
124                 </dependency>
125                 
126                 <!-- https://mvnrepository.com/artifact/com.fasterxml/jackson-xml-databind -->
127                 <dependency>
128                         <groupId>com.fasterxml</groupId>
129                         <artifactId>jackson-xml-databind</artifactId>
130                         <version>0.6.2</version>
131                 </dependency>
132
133         </dependencies>
134
135         <build>
136                 <plugins>
137                         <plugin>
138                                 <groupId>org.apache.maven.plugins</groupId>
139                                 <artifactId>maven-surefire-plugin</artifactId>
140                                 <version>2.21.0</version>
141                                 <configuration>
142                                         <argLine>-XX:+StartAttachListener</argLine>
143                                 </configuration>
144                         </plugin>
145                 </plugins>
146         </build>
147 </project>