blob: a79162a385784f9594177d772a1ba1d2c39f8e2b [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">
Dan Timoneyf20174d2020-08-10 14:09:14 -04003 <modelVersion>4.0.0</modelVersion>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +05304
Dan Timoneyf20174d2020-08-10 14:09:14 -04005 <parent>
6 <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
7 <artifactId>configbackuprestore</artifactId>
8 <version>2.0.0-SNAPSHOT</version>
9 </parent>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053010
Dan Timoneyf20174d2020-08-10 14:09:14 -040011 <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
12 <artifactId>vnfconfigbackupservice</artifactId>
13 <version>2.0.0</version>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053014
Dan Timoneyf20174d2020-08-10 14:09:14 -040015 <name>sdnc-oam :: vnfbackup :: vnfconfigbackupservice</name>
16 <url>http://maven.apache.org</url>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053017
Dan Timoneyf20174d2020-08-10 14:09:14 -040018 <dependencies>
19
20 <dependency>
21 <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
22 <artifactId>getBackupVnfDetailService</artifactId>
23 <version>2.0.0</version>
24 </dependency>
25
26 <dependency>
27 <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
28 <artifactId>vnfconfigreportsservice</artifactId>
29 <version>2.0.0</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>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053038
Dan Timoneyf20174d2020-08-10 14:09:14 -040039 <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>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053052
Dan Timoneyf20174d2020-08-10 14:09:14 -040053 <dependency>
54 <groupId>javax.servlet</groupId>
55 <artifactId>jstl</artifactId>
56 <scope>provided</scope>
57 </dependency>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053058
Dan Timoneyf20174d2020-08-10 14:09:14 -040059 <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>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053071
Dan Timoneyf20174d2020-08-10 14:09:14 -040072 <dependency>
73 <groupId>org.springframework.boot</groupId>
74 <artifactId>spring-boot-starter-web</artifactId>
75 <version>1.5.4.RELEASE</version>
76 </dependency>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053077
Dan Timoneyf20174d2020-08-10 14:09:14 -040078 <dependency>
79 <groupId>org.springframework</groupId>
80 <artifactId>spring-context</artifactId>
81 <version>4.3.9.RELEASE</version>
82 </dependency>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053083
Dan Timoneyf20174d2020-08-10 14:09:14 -040084 <dependency>
85 <groupId>org.springframework.boot</groupId>
86 <artifactId>spring-boot-starter-tomcat</artifactId>
87 <scope>provided</scope>
88 </dependency>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053089
Dan Timoneyf20174d2020-08-10 14:09:14 -040090 <dependency>
91 <groupId>org.apache.tomcat.embed</groupId>
92 <artifactId>tomcat-embed-jasper</artifactId>
93 <scope>provided</scope>
94 </dependency>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053095
Dan Timoneyf20174d2020-08-10 14:09:14 -040096 <dependency>
97 <groupId>org.springframework.boot</groupId>
98 <artifactId>spring-boot-devtools</artifactId>
99 <optional>true</optional>
100 </dependency>
soumendu14507822018-10-22 15:41:29 +0530101
Dan Timoneyf20174d2020-08-10 14:09:14 -0400102 <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>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +0530108
Dan Timoneyf20174d2020-08-10 14:09:14 -0400109 <dependency>
110 <groupId>org.springframework.boot</groupId>
111 <artifactId>spring-boot-starter-data-jpa</artifactId>
112 </dependency>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +0530113
Dan Timoneyf20174d2020-08-10 14:09:14 -0400114 <!-- Add Log4j2 Dependency -->
115 <dependency>
116 <groupId>org.springframework.boot</groupId>
117 <artifactId>spring-boot-starter-log4j2</artifactId>
118 </dependency>
soumendu14507822018-10-22 15:41:29 +0530119
Dan Timoneyf20174d2020-08-10 14:09:14 -0400120 <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>
soumendu14507822018-10-22 15:41:29 +0530138
Dan Timoneyf20174d2020-08-10 14:09:14 -0400139 <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>
Timoney, Dan (dt5972)fe8d3bc2019-01-18 16:51:25 -0500171</project>