Bump minor 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>1.3.0-SNAPSHOT</version>
9     </parent>
10
11         <artifactId>platform-logic-setup</artifactId>
12         <version>1.3.0-SNAPSHOT</version>
13         <packaging>pom</packaging>
14
15         <name>Platform Logic : Setup</name>
16         <description>Copies base ONAP platform-logic</description>
17
18
19         <properties>
20                 <ccsdk.distribution.version>0.2.0-SNAPSHOT</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
57
58
59
60
61                 </plugins>
62
63         </build>
64 </project>