Soumendu Sekhar Acharya | fe054ab | 2018-08-07 12:36:28 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame^] | 2 | <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 Acharya | fe054ab | 2018-08-07 12:36:28 +0530 | [diff] [blame] | 5 | <modelVersion>4.0.0</modelVersion> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame^] | 6 | |
Soumendu Sekhar Acharya | fe054ab | 2018-08-07 12:36:28 +0530 | [diff] [blame] | 7 | <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> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame^] | 14 | <groupId>org.springframework.boot</groupId> |
| 15 | <artifactId>spring-boot-starter-parent</artifactId> |
| 16 | <version>1.5.4.RELEASE</version> |
| 17 | </parent> |
Soumendu Sekhar Acharya | fe054ab | 2018-08-07 12:36:28 +0530 | [diff] [blame] | 18 | |
| 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 | |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame^] | 32 | <modules> |
| 33 | <module>getBackupVnfDetailService</module> |
Soumendu Sekhar Acharya | cc49cb7 | 2018-08-07 15:23:28 +0530 | [diff] [blame] | 34 | <module>vnfconfigreportsservice</module> |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame^] | 35 | <module>vnfconfigbackupservice</module> |
| 36 | </modules> |
Soumendu Sekhar Acharya | fe054ab | 2018-08-07 12:36:28 +0530 | [diff] [blame] | 37 | |
DushyantSinghThakur | 43d4b00 | 2018-09-06 12:46:04 +0530 | [diff] [blame^] | 38 | <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 Acharya | fe054ab | 2018-08-07 12:36:28 +0530 | [diff] [blame] | 73 | </project> |