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>
8 <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
9 <artifactId>configbackuprestore</artifactId>
10 <version>1.4.1-SNAPSHOT</version>
12 <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
13 <artifactId>getBackupVnfDetailService</artifactId>
14 <version>1.4.1-SNAPSHOT</version>
15 <name>sdnc-oam :: vnfbackup :: getBackupVnfDetailService</name>
16 <url>http://maven.apache.org</url>
18 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22 <groupId>junit</groupId>
23 <artifactId>junit</artifactId>
24 <version>4.4</version>
28 <groupId>org.mariadb.jdbc</groupId>
29 <artifactId>mariadb-java-client</artifactId>
30 <version>1.1.9</version>
32 <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
34 <groupId>commons-codec</groupId>
35 <artifactId>commons-codec</artifactId>
36 <version>1.9</version>
40 <groupId>org.springframework.boot</groupId>
41 <artifactId>spring-boot-starter-web</artifactId>
42 <version>1.5.4.RELEASE</version>
46 <groupId>org.springframework</groupId>
47 <artifactId>spring-context</artifactId>
48 <version>4.3.9.RELEASE</version>
52 <groupId>org.springframework.boot</groupId>
53 <artifactId>spring-boot-starter-tomcat</artifactId>
54 <scope>provided</scope>
58 <groupId>org.apache.tomcat.embed</groupId>
59 <artifactId>tomcat-embed-jasper</artifactId>
60 <scope>provided</scope>
65 <groupId>org.springframework.boot</groupId>
66 <artifactId>spring-boot-devtools</artifactId>
67 <optional>true</optional>
71 <groupId>org.springframework.boot</groupId>
72 <artifactId>spring-boot-starter-test</artifactId>
74 <version>1.5.3.RELEASE</version>
78 <groupId>org.springframework.boot</groupId>
79 <artifactId>spring-boot-starter-data-jpa</artifactId>
82 <!-- Add Log4j2 Dependency -->
84 <groupId>org.springframework.boot</groupId>
85 <artifactId>spring-boot-starter-log4j2</artifactId>
87 <!-- https://mvnrepository.com/artifact/org.javers/javers-core -->
89 <groupId>org.javers</groupId>
90 <artifactId>javers-core</artifactId>
91 <version>3.9.3</version>
95 <groupId>org.json</groupId>
96 <artifactId>json</artifactId>
97 <version>20180130</version>
100 <!-- https://mvnrepository.com/artifact/com.flipkart.zjsonpatch/zjsonpatch -->
102 <groupId>com.flipkart.zjsonpatch</groupId>
103 <artifactId>zjsonpatch</artifactId>
104 <version>0.2.1</version>
111 <groupId>org.jacoco</groupId>
112 <artifactId>jacoco-maven-plugin</artifactId>
113 <version>0.7.5.201505241946</version>
115 <!-- Prepares the property pointing to the JaCoCo runtime agent which
116 is passed as VM argument when Maven the Surefire plugin is executed. -->
118 <id>pre-unit-test</id>
120 <goal>prepare-agent</goal>
123 <!-- Sets the path to the file which contains the execution data. -->
124 <destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
125 <!-- Sets the name of the property containing the settings for JaCoCo
127 <propertyName>surefireArgLine</propertyName>
130 <!-- Ensures that the code coverage report for unit tests is created
131 after unit tests have been run. -->
133 <id>post-unit-test</id>
139 <!-- Sets the path to the file which contains the execution data. -->
140 <dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
141 <!-- Sets the output directory for the code coverage report. -->
142 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>