Merge "Allow YANG sub directories"
[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.1-SNAPSHOT</version>
11         <name>sdnc-oam :: vnfbackup</name>
12         <packaging>pom</packaging>
13
14         <parent>
15                 <groupId>org.onap.ccsdk.parent</groupId>
16                 <artifactId>spring-boot-1-starter-parent</artifactId>
17                 <version>1.1.1-SNAPSHOT</version>
18         </parent>
19
20         <properties>
21                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
22
23                 <!-- ONAP repositories -->
24                 <onap.nexus.host>nexus.onap.org</onap.nexus.host>
25                 <onap.nexus.port>443</onap.nexus.port>
26                 <onap.nexus.protocol>https</onap.nexus.protocol>
27                 <onap.nexus.public-url>https://nexus.onap.org/content/groups/public</onap.nexus.public-url>
28                 <onap.nexus.staging-url>https://nexus.onap.org/content/groups/staging</onap.nexus.staging-url>
29                 <onap.nexus.release-url>https://nexus.onap.org/content/repositories/releases</onap.nexus.release-url>
30                 <onap.nexus.snapshot-url>https://nexus.onap.org/content/repositories/snapshots</onap.nexus.snapshot-url>
31                 <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
32                 <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
33         </properties>
34
35         <dependencies>
36                 <dependency>
37                         <groupId>junit</groupId>
38                         <artifactId>junit</artifactId>
39                         <version>3.8.1</version>
40                         <scope>test</scope>
41                 </dependency>
42         </dependencies>
43
44         <distributionManagement>
45                 <repository>
46                         <id>ecomp-releases</id>
47                         <url>http://nexus.onap.org/content/repositories/releases</url>
48                 </repository>
49                 <snapshotRepository>
50                         <id>ecomp-snapshots</id>
51                         <url>http://nexus.onap.org/content/repositories/snapshots</url>
52                 </snapshotRepository>
53         </distributionManagement>
54
55         <modules>
56                 <module>getBackupVnfDetailService</module>
57                 <module>vnfconfigreportsservice</module>
58                 <module>vnfconfigbackupservice</module>
59         </modules>
60
61         <build>
62                 <plugins>
63                         <plugin>
64                                 <groupId>org.jacoco</groupId>
65                                 <artifactId>jacoco-maven-plugin</artifactId>
66                                 <version>0.7.5.201505241946</version>
67                                 <executions>
68
69                                         <execution>
70                                                 <id>pre-unit-test</id>
71                                                 <goals>
72                                                         <goal>prepare-agent</goal>
73                                                 </goals>
74                                                 <configuration>
75                                                         <destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
76                                                         <propertyName>surefireArgLine</propertyName>
77                                                 </configuration>
78                                         </execution>
79
80                                         <execution>
81                                                 <id>post-unit-test</id>
82                                                 <phase>test</phase>
83                                                 <goals>
84                                                         <goal>report</goal>
85                                                 </goals>
86                                                 <configuration>
87                                                         <dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
88                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
89                                                 </configuration>
90                                         </execution>
91                                 </executions>
92                         </plugin>
93                 </plugins>
94         </build>
95
96 </project>