blob: 8f492edc66184757b66f758ba9c2b5f70ab0f35d [file] [log] [blame]
Soumendu Sekhar Acharyafe054ab2018-08-07 12:36:28 +05301<?xml version="1.0" encoding="UTF-8"?>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +05302<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
Soumendu Sekhar Acharyafe054ab2018-08-07 12:36:28 +05305 <modelVersion>4.0.0</modelVersion>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +05306
Soumendu Sekhar Acharyafe054ab2018-08-07 12:36:28 +05307 <groupId>org.onap.ccsdk.parent</groupId>
8 <artifactId>configbackuprestore</artifactId>
9 <version>1.0-SNAPSHOT</version>
10 <name>Archetype - configbackuprestore</name>
11 <packaging>pom</packaging>
12
13 <parent>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053014 <groupId>org.springframework.boot</groupId>
15 <artifactId>spring-boot-starter-parent</artifactId>
16 <version>1.5.4.RELEASE</version>
17 </parent>
Soumendu Sekhar Acharyafe054ab2018-08-07 12:36:28 +053018
19 <properties>
20 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21 </properties>
22
23 <dependencies>
24 <dependency>
25 <groupId>junit</groupId>
26 <artifactId>junit</artifactId>
27 <version>3.8.1</version>
28 <scope>test</scope>
29 </dependency>
30 </dependencies>
31
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053032 <modules>
33 <module>getBackupVnfDetailService</module>
Soumendu Sekhar Acharyacc49cb72018-08-07 15:23:28 +053034 <module>vnfconfigreportsservice</module>
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053035 <module>vnfconfigbackupservice</module>
36 </modules>
Soumendu Sekhar Acharyafe054ab2018-08-07 12:36:28 +053037
DushyantSinghThakur43d4b002018-09-06 12:46:04 +053038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.jacoco</groupId>
42 <artifactId>jacoco-maven-plugin</artifactId>
43 <version>0.7.5.201505241946</version>
44 <executions>
45
46 <execution>
47 <id>pre-unit-test</id>
48 <goals>
49 <goal>prepare-agent</goal>
50 </goals>
51 <configuration>
52 <destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
53 <propertyName>surefireArgLine</propertyName>
54 </configuration>
55 </execution>
56
57 <execution>
58 <id>post-unit-test</id>
59 <phase>test</phase>
60 <goals>
61 <goal>report</goal>
62 </goals>
63 <configuration>
64 <dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
65 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
66 </configuration>
67 </execution>
68 </executions>
69 </plugin>
70 </plugins>
71 </build>
72
Soumendu Sekhar Acharyafe054ab2018-08-07 12:36:28 +053073</project>