Release version 2.1.2 dockers and roll 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.sdnc.oam</groupId>
7         <artifactId>platform-logic</artifactId>
8         <version>2.1.3-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.sdnc.oam</groupId>
12     <artifactId>platform-logic-setup</artifactId>
13     <version>2.1.3-SNAPSHOT</version>
14     <packaging>pom</packaging>
15
16     <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
17     <description>Copies base ONAP platform-logic</description>
18
19     <properties>
20         <ccsdk.distribution.version>1.1.1</ccsdk.distribution.version>
21     </properties>
22
23     <build>
24         <plugins>
25
26             <plugin>
27                 <groupId>org.apache.maven.plugins</groupId>
28                 <artifactId>maven-dependency-plugin</artifactId>
29                 <version>3.0.0</version>
30                 <executions>
31                     <execution>
32                         <id>unpack</id>
33                         <phase>validate</phase>
34                         <goals>
35                             <goal>unpack</goal>
36                         </goals>
37                         <configuration>
38                             <artifactItems>
39                                 <artifactItem>
40                                     <groupId>org.onap.ccsdk.distribution</groupId>
41                                     <artifactId>platform-logic-installer</artifactId>
42                                     <version>${ccsdk.distribution.version}</version>
43                                     <type>zip</type>
44                                     <overWrite>true</overWrite>
45                                     <outputDirectory>../target</outputDirectory>
46                                 </artifactItem>
47                             </artifactItems>
48                             <overWriteReleases>false</overWriteReleases>
49                             <overWriteSnapshots>true</overWriteSnapshots>
50                             <overWriteIfNewer>true</overWriteIfNewer>
51                             <localRepositoryDirectory>../target/repository</localRepositoryDirectory>
52                         </configuration>
53                     </execution>
54                 </executions>
55             </plugin>
56         </plugins>
57     </build>
58 </project>