Change PTL of VNFSDK to be Dan Xu
[vnfsdk/refrepo.git] / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3
4     Copyright (C) 2018, Huawei Technologies, Ltd.
5     Copyright (C) 2017 CMCC, Inc. and others. All rights reserved.
6     Copyright (C) 2020 Nokia
7
8     Licensed under the Apache License, Version 2.0 (the "License");
9     you may not use this file except in compliance with the License.
10     You may obtain a copy of the License at
11
12             http://www.apache.org/licenses/LICENSE-2.0
13
14     Unless required by applicable law or agreed to in writing, software
15     distributed under the License is distributed on an "AS IS" BASIS,
16     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17     See the License for the specific language governing permissions and
18     limitations under the License.
19
20 -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22     <parent>
23       <groupId>org.onap.oparent</groupId>
24       <artifactId>oparent</artifactId>
25       <version>2.1.0</version>
26       <relativePath>../../oparent</relativePath>
27     </parent>
28
29     <modelVersion>4.0.0</modelVersion>
30     <groupId>org.onap.vnfsdk.refrepo</groupId>
31     <artifactId>vnfmarket</artifactId>
32     <version>1.6.0-SNAPSHOT</version>
33     <packaging>pom</packaging>
34     <name>vnfsdk-refrepo</name>
35
36         <properties>
37         <java.version>11</java.version>
38         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39         <sonar.language>java</sonar.language>
40         <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
41         <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
42         <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
43         <sonar.projectVersion>${project.version}</sonar.projectVersion>
44         <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
45     </properties>
46
47     <modules>
48         <module>vnfmarket-be</module>
49     </modules>
50
51         <build>
52         <plugins>
53             <plugin>
54                 <groupId>org.jacoco</groupId>
55                 <artifactId>jacoco-maven-plugin</artifactId>
56                 <executions>
57                   <execution>
58                     <id>prepare-agent</id>
59                     <goals>
60                         <goal>prepare-agent</goal>
61                     </goals>
62                   </execution>
63                   <execution>
64                      <id>report</id>
65                      <goals>
66                        <goal>report</goal>
67                      </goals>
68                      <configuration>
69                         <dataFile>${project.build.directory}/code-coverage/jacoco.exec</dataFile>
70                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
71                      </configuration>
72                   </execution>
73                </executions>
74             </plugin>
75
76         </plugins>
77     </build>
78
79     <profiles>
80         <profile>
81             <id>docker</id>
82             <properties>
83                 <maven.test.skip>true</maven.test.skip>
84             </properties>
85         </profile>
86     </profiles>
87
88 </project>