blob: 0854411d2f1414bb043a735fd2bea08970683500 [file] [log] [blame]
“shentao”ee2ca982016-09-18 15:38:21 +08001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
Chris Donley8bbbe102018-03-13 16:51:03 -07004 Copyright (C) 2018, Huawei Technologies, Ltd.
“shentao”6f01a872017-01-26 16:19:00 +08005 Copyright (C) 2017 CMCC, Inc. and others. All rights reserved.
Bogumil Zebek0aa56e62020-08-21 08:37:36 +02006 Copyright (C) 2020 Nokia
“shentao”ee2ca982016-09-18 15:38:21 +08007
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>
Murali-Pc079b1b2017-08-03 14:59:50 +053023 <groupId>org.onap.oparent</groupId>
“shentao”ee2ca982016-09-18 15:38:21 +080024 <artifactId>oparent</artifactId>
Victor Gao5a440582019-09-05 10:59:16 +080025 <version>2.1.0</version>
Murali74c062d2017-11-08 06:19:03 +000026 <relativePath>../../oparent</relativePath>
“shentao”ee2ca982016-09-18 15:38:21 +080027 </parent>
“shentao”6f01a872017-01-26 16:19:00 +080028
“shentao”ee2ca982016-09-18 15:38:21 +080029 <modelVersion>4.0.0</modelVersion>
Murali-P4e60efd2017-08-09 12:13:32 +053030 <groupId>org.onap.vnfsdk.refrepo</groupId>
Murali-Pc079b1b2017-08-03 14:59:50 +053031 <artifactId>vnfmarket</artifactId>
Bartosz Gardziejewski446aa232021-02-26 09:46:13 +010032 <version>1.6.4-SNAPSHOT</version>
“shentao”ee2ca982016-09-18 15:38:21 +080033 <packaging>pom</packaging>
Jessica Wagantallfe9f6d72017-09-08 15:02:12 -070034 <name>vnfsdk-refrepo</name>
Bogumil Zebek0aa56e62020-08-21 08:37:36 +020035
Victor Gaof01da392020-02-21 11:40:22 +080036 <properties>
Bogumil Zebek0aa56e62020-08-21 08:37:36 +020037 <java.version>11</java.version>
Victor Gaof01da392020-02-21 11:40:22 +080038 <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>
“shentao”6f01a872017-01-26 16:19:00 +080046
Bogumil Zebek0aa56e62020-08-21 08:37:36 +020047 <modules>
Moshe Hoadleyc2d82562017-10-31 12:22:12 +020048 <module>vnfmarket-be</module>
“shentao”ee2ca982016-09-18 15:38:21 +080049 </modules>
Bogumil Zebek0aa56e62020-08-21 08:37:36 +020050
Victor Gaof01da392020-02-21 11:40:22 +080051 <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>
Bogumil Zebekce294fc2020-04-01 12:51:30 +020078
79 <profiles>
80 <profile>
81 <id>docker</id>
82 <properties>
83 <maven.test.skip>true</maven.test.skip>
84 </properties>
85 </profile>
86 </profiles>
Bogumil Zebek0aa56e62020-08-21 08:37:36 +020087
“shentao”ee2ca982016-09-18 15:38:21 +080088</project>