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. |
| 4 | |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 6 | not use this file except in compliance with the License. You may obtain |
| 7 | a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 13 | WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 14 | License for the specific language governing permissions and limitations |
| 15 | under the License. |
| 16 | --> |
| 17 | <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"> |
| 18 | <modelVersion>4.0.0</modelVersion> |
| 19 | <packaging>pom</packaging> |
| 20 | |
| 21 | <parent> |
Dave Chen | f552574 | 2017-07-28 15:15:36 +0800 | [diff] [blame] | 22 | <groupId>org.onap.oparent</groupId> |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 23 | <artifactId>oparent</artifactId> |
Lianhao Lu | 65dad45 | 2018-02-22 09:48:24 +0800 | [diff] [blame] | 24 | <version>1.1.0-SNAPSHOT</version> |
Lianhao Lu | 1614373 | 2018-03-02 23:11:55 +0800 | [diff] [blame^] | 25 | <relativePath>../../oparent</relativePath> |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 26 | </parent> |
| 27 | |
Dave Chen | f552574 | 2017-07-28 15:15:36 +0800 | [diff] [blame] | 28 | <groupId>org.onap.vnfsdk.pkgtools</groupId> |
| 29 | <artifactId>vnf-sdk-pkgtools</artifactId> |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 30 | |
Jessica Wagantall | 4d6f1bc | 2017-09-08 13:47:14 -0700 | [diff] [blame] | 31 | <name>vnfsdk-pkgtools</name> |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 32 | <description>CSAR manipulation shared library with CLI</description> |
Lianhao Lu | 65dad45 | 2018-02-22 09:48:24 +0800 | [diff] [blame] | 33 | <properties> |
| 34 | <sonar.language>py</sonar.language> |
| 35 | <sonar.pluginName>Python</sonar.pluginName> |
Lianhao Lu | 1614373 | 2018-03-02 23:11:55 +0800 | [diff] [blame^] | 36 | <sonar.inclusions>**/*.py</sonar.inclusions> |
Lianhao Lu | 65dad45 | 2018-02-22 09:48:24 +0800 | [diff] [blame] | 37 | </properties> |
Krzysztof Frukacz | 9de2fbd | 2017-01-29 06:31:22 +0100 | [diff] [blame] | 38 | |
| 39 | <build> |
| 40 | <plugins> |
| 41 | <plugin> |
| 42 | <artifactId>maven-assembly-plugin</artifactId> |
| 43 | <configuration> |
| 44 | <appendAssemblyId>false</appendAssemblyId> |
| 45 | <descriptors> |
| 46 | <descriptor>assembly.xml</descriptor> |
| 47 | </descriptors> |
| 48 | </configuration> |
| 49 | <executions> |
| 50 | <execution> |
| 51 | <id>make-assembly</id> |
| 52 | <phase>package</phase> |
| 53 | <goals> |
| 54 | <goal>single</goal> |
| 55 | </goals> |
| 56 | </execution> |
| 57 | </executions> |
| 58 | </plugin> |
| 59 | </plugins> |
| 60 | </build> |
| 61 | </project> |