Add logic to delete resource also from AAI
[sdnc/oam.git] / platform-logic / installer / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3         <modelVersion>4.0.0</modelVersion>
4
5         <parent>
6                 <groupId>org.onap.ccsdk.parent</groupId>
7                 <artifactId>odlparent-lite</artifactId>
8                 <version>1.2.4</version>
9                 <relativePath/>
10         </parent>
11
12         <groupId>org.onap.sdnc.oam</groupId>
13         <artifactId>platform-logic-installer</artifactId>
14         <version>1.5.4-SNAPSHOT</version>
15         <packaging>pom</packaging>
16
17         <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
18         <description>Contains platform-level service logic installer</description>
19
20         <build>
21                 <plugins>
22
23                         <plugin>
24                                 <artifactId>maven-assembly-plugin</artifactId>
25                                 <version>2.6</version>
26                                 <executions>
27                                         <execution>
28                                                 <id>create-zip</id>
29                                                 <goals>
30                                                         <goal>single</goal>
31                                                 </goals>
32                                                 <phase>package</phase>
33                                                 <configuration>
34                                                         <attach>true</attach>
35                                                         <descriptors>
36                                                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
37                                                         </descriptors>
38                                                         <appendAssemblyId>false</appendAssemblyId>
39                                                 </configuration>
40                                         </execution>
41
42                                 </executions>
43                         </plugin>
44
45         </plugins>
46         </build>
47 </project>