blob: 77e13acb8cacfb941125e7bdd1d321781d956dce [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.
4
5Licensed under the Apache License, Version 2.0 (the "License"); you may
6not use this file except in compliance with the License. You may obtain
7a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14License for the specific language governing permissions and limitations
15under 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 Chenf5525742017-07-28 15:15:36 +080022 <groupId>org.onap.oparent</groupId>
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +010023 <artifactId>oparent</artifactId>
Lianhao Lu65dad452018-02-22 09:48:24 +080024 <version>1.1.0-SNAPSHOT</version>
Lianhao Lu16143732018-03-02 23:11:55 +080025 <relativePath>../../oparent</relativePath>
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +010026 </parent>
27
Dave Chenf5525742017-07-28 15:15:36 +080028 <groupId>org.onap.vnfsdk.pkgtools</groupId>
29 <artifactId>vnf-sdk-pkgtools</artifactId>
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +010030
Jessica Wagantall4d6f1bc2017-09-08 13:47:14 -070031 <name>vnfsdk-pkgtools</name>
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +010032 <description>CSAR manipulation shared library with CLI</description>
Lianhao Lu65dad452018-02-22 09:48:24 +080033 <properties>
34 <sonar.language>py</sonar.language>
35 <sonar.pluginName>Python</sonar.pluginName>
Lianhao Lu16143732018-03-02 23:11:55 +080036 <sonar.inclusions>**/*.py</sonar.inclusions>
Lianhao Lu65dad452018-02-22 09:48:24 +080037 </properties>
Krzysztof Frukacz9de2fbd2017-01-29 06:31:22 +010038
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>