Update to latest Frankfurt parent pom version
[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.5.10-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.sdnc.oam</groupId>
13     <artifactId>platform-logic-setup</artifactId>
14     <version>1.8.5-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     <properties>
21         <ccsdk.distribution.version>0.7.3</ccsdk.distribution.version>
22     </properties>
23
24     <build>
25         <plugins>
26
27             <plugin>
28                 <groupId>org.apache.maven.plugins</groupId>
29                 <artifactId>maven-dependency-plugin</artifactId>
30                 <version>3.0.0</version>
31                 <executions>
32                     <execution>
33                         <id>unpack</id>
34                         <phase>validate</phase>
35                         <goals>
36                             <goal>unpack</goal>
37                         </goals>
38                         <configuration>
39                             <artifactItems>
40                                 <artifactItem>
41                                     <groupId>org.onap.ccsdk.distribution</groupId>
42                                     <artifactId>platform-logic-installer</artifactId>
43                                     <version>${ccsdk.distribution.version}</version>
44                                     <type>zip</type>
45                                     <overWrite>true</overWrite>
46                                     <outputDirectory>../target</outputDirectory>
47                                 </artifactItem>
48                             </artifactItems>
49                             <overWriteReleases>false</overWriteReleases>
50                             <overWriteSnapshots>true</overWriteSnapshots>
51                             <overWriteIfNewer>true</overWriteIfNewer>
52                             <localRepositoryDirectory>../target/repository</localRepositoryDirectory>
53                         </configuration>
54                     </execution>
55                 </executions>
56             </plugin>
57         </plugins>
58     </build>
59 </project>