Merge "add LCM ansible playbooks"
[sdnc/oam.git] / configbackuprestore / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5
6         <modelVersion>4.0.0</modelVersion>
7
8         <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
9         <artifactId>configbackuprestore</artifactId>
10         <version>1.4.0-SNAPSHOT</version>
11         <name>sdnc-oam :: vnfbackup</name>
12         <packaging>pom</packaging>
13
14         <parent>
15                 <groupId>org.springframework.boot</groupId>
16                 <artifactId>spring-boot-starter-parent</artifactId>
17                 <version>1.5.4.RELEASE</version>
18         </parent>
19
20         <properties>
21                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22         </properties>
23
24         <dependencies>
25                 <dependency>
26                         <groupId>junit</groupId>
27                         <artifactId>junit</artifactId>
28                         <version>3.8.1</version>
29                         <scope>test</scope>
30                 </dependency>
31         </dependencies>
32
33         <distributionManagement>
34                 <repository>
35                         <id>ecomp-releases</id>
36                         <url>http://nexus.onap.org/content/repositories/releases</url>
37                 </repository>
38                 <snapshotRepository>
39                         <id>ecomp-snapshots</id>
40                         <url>http://nexus.onap.org/content/repositories/snapshots</url>
41                 </snapshotRepository>
42         </distributionManagement>
43
44         <modules>
45                 <module>getBackupVnfDetailService</module>
46                 <module>vnfconfigreportsservice</module>
47                 <module>vnfconfigbackupservice</module>
48         </modules>
49
50         <build>
51                 <plugins>
52                         <plugin>
53                                 <groupId>org.jacoco</groupId>
54                                 <artifactId>jacoco-maven-plugin</artifactId>
55                                 <version>0.7.5.201505241946</version>
56                                 <executions>
57
58                                         <execution>
59                                                 <id>pre-unit-test</id>
60                                                 <goals>
61                                                         <goal>prepare-agent</goal>
62                                                 </goals>
63                                                 <configuration>
64                                                         <destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
65                                                         <propertyName>surefireArgLine</propertyName>
66                                                 </configuration>
67                                         </execution>
68
69                                         <execution>
70                                                 <id>post-unit-test</id>
71                                                 <phase>test</phase>
72                                                 <goals>
73                                                         <goal>report</goal>
74                                                 </goals>
75                                                 <configuration>
76                                                         <dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
77                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
78                                                 </configuration>
79                                         </execution>
80                                 </executions>
81                         </plugin>
82                 </plugins>
83         </build>
84
85 </project>