blob: 6a865eb90b7850989d80a20a56ae294eb609d672 [file] [log] [blame]
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +01001<?xml version="1.0"?>
2<!--
3Copyright (c) 2016 GigaSpaces Technologies Ltd. All rights reserved.
Chris Donley351bda32018-03-14 16:45:25 -07004Copyright (c) 2018 Huawei Technologies Co., Ltd. All rights reserved.
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +01005
6Licensed under the Apache License, Version 2.0 (the "License"); you may
7not use this file except in compliance with the License. You may obtain
8a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15License for the specific language governing permissions and limitations
16under the License.
17-->
18<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">
19 <modelVersion>4.0.0</modelVersion>
20 <packaging>pom</packaging>
21
22 <parent>
Dave Chenf5525742017-07-28 15:15:36 +080023 <groupId>org.onap.oparent</groupId>
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +010024 <artifactId>oparent</artifactId>
Gary Wub6f89982018-08-24 15:33:30 -070025 <version>1.2.0</version>
Lianhao Lu16143732018-03-02 23:11:55 +080026 <relativePath>../../oparent</relativePath>
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +010027 </parent>
28
Dave Chenf5525742017-07-28 15:15:36 +080029 <groupId>org.onap.vnfsdk.pkgtools</groupId>
Lianhao Lu2394a982018-03-20 09:26:54 +080030 <artifactId>vnfsdk-pkgtools</artifactId>
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +010031
Jessica Wagantall4d6f1bc2017-09-08 13:47:14 -070032 <name>vnfsdk-pkgtools</name>
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +010033 <description>CSAR manipulation shared library with CLI</description>
Lianhao Lu65dad452018-02-22 09:48:24 +080034 <properties>
Chris Donley8cda2312018-03-20 15:56:36 -070035 <sonar.sourceEncoding>UTF-8</sonar.sourceEncoding>
Lianhao Lu7676ca52018-03-22 20:39:04 +080036 <sonar.sources>vnfsdk_pkgtools</sonar.sources>
Lianhao Lu2394a982018-03-20 09:26:54 +080037 <sonar.python.coverage.reportPath>coverage.xml</sonar.python.coverage.reportPath>
Lianhao Lu65dad452018-02-22 09:48:24 +080038 <sonar.language>py</sonar.language>
Chris Donley21cb8332018-03-20 13:35:25 -070039 <sonar.pluginName>python</sonar.pluginName>
Chris Donleyeebc0c52018-03-23 13:35:06 -070040 <sonar.inclusions>vnfsdk_pkgtools/*/**.py</sonar.inclusions>
41 <sonar.exclusions>version.py,setup.py</sonar.exclusions>
Lianhao Lu65dad452018-02-22 09:48:24 +080042 </properties>
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +010043
44 <build>
45 <plugins>
46 <plugin>
47 <artifactId>maven-assembly-plugin</artifactId>
48 <configuration>
49 <appendAssemblyId>false</appendAssemblyId>
50 <descriptors>
51 <descriptor>assembly.xml</descriptor>
52 </descriptors>
53 </configuration>
54 <executions>
55 <execution>
56 <id>make-assembly</id>
57 <phase>package</phase>
58 <goals>
59 <goal>single</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
64 </plugins>
65 </build>
66</project>