Add logic to delete resource also from AAI
[sdnc/oam.git] / platform-logic / setup / 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-setup</artifactId>
14         <version>1.5.4-SNAPSHOT</version>
15         <packaging>pom</packaging>
16
17     <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
18         <description>Copies base ONAP platform-logic</description>
19
20         <build>
21                 <plugins>
22
23                         <plugin>
24                                 <groupId>org.apache.maven.plugins</groupId>
25                                 <artifactId>maven-dependency-plugin</artifactId>
26                                 <version>3.0.0</version>
27                                 <executions>
28                                         <execution>
29                                                 <id>unpack</id>
30                                                 <phase>validate</phase>
31                                                 <goals>
32                                                         <goal>unpack</goal>
33                                                 </goals>
34                                                 <configuration>
35                                                         <artifactItems>
36                                                                 <artifactItem>
37                                                                         <groupId>org.onap.ccsdk.distribution</groupId>
38                                                                         <artifactId>platform-logic-installer</artifactId>
39                                                                         <version>${ccsdk.distribution.version}</version>
40                                                                         <type>zip</type>
41                                                                         <overWrite>true</overWrite>
42                                                                         <outputDirectory>../target</outputDirectory>
43                                                                 </artifactItem>
44                                                         </artifactItems>
45                                                         <overWriteReleases>false</overWriteReleases>
46                                                         <overWriteSnapshots>true</overWriteSnapshots>
47                                                         <overWriteIfNewer>true</overWriteIfNewer>
48                                                         <localRepositoryDirectory>../target/repository</localRepositoryDirectory>
49                                                 </configuration>
50                                         </execution>
51                                 </executions>
52                         </plugin>
53
54
55
56
57
58                 </plugins>
59         </build>
60 </project>