RehanRaza | dbadd6e | 2019-11-12 20:10:43 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
RehanRaza | 553523f | 2019-11-12 13:39:40 +0100 | [diff] [blame] | 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Modifications Copyright (C) 2019 Nordix Foundation. |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain 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, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
RehanRaza | dbadd6e | 2019-11-12 20:10:43 +0100 | [diff] [blame] | 21 | <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"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <repositories> |
| 25 | <repository> |
| 26 | <id>onap-releases</id> |
| 27 | <name>onap-releases</name> |
| 28 | <url>https://nexus.onap.org/content/repositories/releases/</url> |
| 29 | </repository> |
| 30 | </repositories> |
| 31 | |
| 32 | <parent> |
| 33 | <groupId>org.onap.ccsdk.parent</groupId> |
| 34 | <artifactId>odlparent-lite</artifactId> |
| 35 | <version>1.4.3</version> |
| 36 | <relativePath/> |
| 37 | </parent> |
| 38 | |
| 39 | <groupId>org.onap.sdnc.oam</groupId> |
| 40 | <artifactId>platform-logic-installer</artifactId> |
| 41 | <version>1.7.3-SNAPSHOT</version> |
| 42 | <packaging>pom</packaging> |
| 43 | |
| 44 | <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name> |
| 45 | <description>Contains platform-level service logic installer</description> |
| 46 | |
| 47 | <build> |
| 48 | <plugins> |
| 49 | |
| 50 | <plugin> |
| 51 | <artifactId>maven-assembly-plugin</artifactId> |
| 52 | <version>2.6</version> |
| 53 | <executions> |
| 54 | <execution> |
| 55 | <id>create-zip</id> |
| 56 | <goals> |
| 57 | <goal>single</goal> |
| 58 | </goals> |
| 59 | <phase>package</phase> |
| 60 | <configuration> |
| 61 | <attach>true</attach> |
| 62 | <descriptors> |
| 63 | <descriptor>src/assembly/assemble_zip.xml</descriptor> |
| 64 | </descriptors> |
| 65 | <appendAssemblyId>false</appendAssemblyId> |
| 66 | </configuration> |
| 67 | </execution> |
| 68 | |
| 69 | </executions> |
| 70 | </plugin> |
| 71 | |
| 72 | </plugins> |
| 73 | </build> |
| 74 | </project> |