Chore: Add gerrit maven verify GHA workflow
[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     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
7         <artifactId>configbackuprestore</artifactId>
8         <version>2.2.0-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
12     <artifactId>vnfconfigbackupservice</artifactId>
13     <version>2.2.0-SNAPSHOT</version>
14
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>2.2.0-SNAPSHOT</version>
24         </dependency>
25
26         <dependency>
27             <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
28             <artifactId>vnfconfigreportsservice</artifactId>
29             <version>2.2.0-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             <version>1.5.3.RELEASE</version>
106             <scope>test</scope>
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         <dependency>
134         <groupId>org.webjars</groupId>
135         <artifactId>bootstrap</artifactId>
136         <version>3.3.7</version>
137         </dependency>
138
139         <dependency>
140         <groupId>org.webjars</groupId>
141         <artifactId>bootstrap-datepicker</artifactId>
142         <version>1.0.1</version>
143         </dependency>
144
145         <dependency>
146             <groupId>org.webjars.bower</groupId>
147             <artifactId>angular-object-diff</artifactId>
148             <version>1.0.1</version>
149         </dependency>
150
151     </dependencies>
152
153     <build>
154         <plugins>
155
156             <plugin>
157                 <groupId>org.springframework.boot</groupId>
158                 <artifactId>spring-boot-maven-plugin</artifactId>
159             </plugin>
160
161             <plugin>
162                 <groupId>org.apache.maven.plugins</groupId>
163                 <artifactId>maven-surefire-plugin</artifactId>
164                 <version>2.21.0</version>
165                 <configuration>
166                     <argLine>-XX:+StartAttachListener</argLine>
167                 </configuration>
168             </plugin>
169         </plugins>
170     </build>
171 </project>