Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | Copyright (c) 2016 GigaSpaces Technologies Ltd. All rights reserved. |
Chris Donley | 351bda3 | 2018-03-14 16:45:25 -0700 | [diff] [blame] | 4 | Copyright (c) 2018 Huawei Technologies Co., Ltd. All rights reserved. |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 5 | |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 7 | not use this file except in compliance with the License. You may obtain |
| 8 | a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 14 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 15 | License for the specific language governing permissions and limitations |
| 16 | under 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 Chen | f552574 | 2017-07-28 15:15:36 +0800 | [diff] [blame] | 23 | <groupId>org.onap.oparent</groupId> |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 24 | <artifactId>oparent</artifactId> |
Gary Wu | b6f8998 | 2018-08-24 15:33:30 -0700 | [diff] [blame] | 25 | <version>1.2.0</version> |
Lianhao Lu | 1614373 | 2018-03-02 23:11:55 +0800 | [diff] [blame] | 26 | <relativePath>../../oparent</relativePath> |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 27 | </parent> |
| 28 | |
Dave Chen | f552574 | 2017-07-28 15:15:36 +0800 | [diff] [blame] | 29 | <groupId>org.onap.vnfsdk.pkgtools</groupId> |
Lianhao Lu | 2394a98 | 2018-03-20 09:26:54 +0800 | [diff] [blame] | 30 | <artifactId>vnfsdk-pkgtools</artifactId> |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 31 | |
Jessica Wagantall | 4d6f1bc | 2017-09-08 13:47:14 -0700 | [diff] [blame] | 32 | <name>vnfsdk-pkgtools</name> |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 33 | <description>CSAR manipulation shared library with CLI</description> |
Lianhao Lu | 65dad45 | 2018-02-22 09:48:24 +0800 | [diff] [blame] | 34 | <properties> |
Chris Donley | 8cda231 | 2018-03-20 15:56:36 -0700 | [diff] [blame] | 35 | <sonar.sourceEncoding>UTF-8</sonar.sourceEncoding> |
Lianhao Lu | 7676ca5 | 2018-03-22 20:39:04 +0800 | [diff] [blame] | 36 | <sonar.sources>vnfsdk_pkgtools</sonar.sources> |
Lianhao Lu | 2394a98 | 2018-03-20 09:26:54 +0800 | [diff] [blame] | 37 | <sonar.python.coverage.reportPath>coverage.xml</sonar.python.coverage.reportPath> |
Lianhao Lu | 65dad45 | 2018-02-22 09:48:24 +0800 | [diff] [blame] | 38 | <sonar.language>py</sonar.language> |
Chris Donley | 21cb833 | 2018-03-20 13:35:25 -0700 | [diff] [blame] | 39 | <sonar.pluginName>python</sonar.pluginName> |
Chris Donley | eebc0c5 | 2018-03-23 13:35:06 -0700 | [diff] [blame] | 40 | <sonar.inclusions>vnfsdk_pkgtools/*/**.py</sonar.inclusions> |
| 41 | <sonar.exclusions>version.py,setup.py</sonar.exclusions> |
Lianhao Lu | 65dad45 | 2018-02-22 09:48:24 +0800 | [diff] [blame] | 42 | </properties> |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 43 | |
| 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> |