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> |
| 22 | <groupId>org.openo.oparent</groupId> |
| 23 | <artifactId>oparent</artifactId> |
| 24 | <version>1.1.0-SNAPSHOT</version> |
| 25 | <relativePath>../oparent</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <groupId>org.openo.vnf-sdk-design-pkg</groupId> |
| 29 | <artifactId>vnfsdk</artifactId> |
| 30 | |
| 31 | <name>vnf-sdk-design-pkg</name> |
| 32 | <description>CSAR manipulation shared library with CLI</description> |
| 33 | |
| 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <artifactId>maven-assembly-plugin</artifactId> |
| 38 | <configuration> |
| 39 | <appendAssemblyId>false</appendAssemblyId> |
| 40 | <descriptors> |
| 41 | <descriptor>assembly.xml</descriptor> |
| 42 | </descriptors> |
| 43 | </configuration> |
| 44 | <executions> |
| 45 | <execution> |
| 46 | <id>make-assembly</id> |
| 47 | <phase>package</phase> |
| 48 | <goals> |
| 49 | <goal>single</goal> |
| 50 | </goals> |
| 51 | </execution> |
| 52 | </executions> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | </build> |
| 56 | </project> |