e21823862b65c8a667b86dba918a5aeeba9144e9
[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"
3         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5         <modelVersion>4.0.0</modelVersion>
6
7         <parent>
8                 <groupId>org.onap.ccsdk.parent</groupId>
9                 <artifactId>odlparent-lite</artifactId>
10                 <version>1.1.2</version>
11                 <relativePath />
12         </parent>
13
14         <groupId>org.onap.sdnc.oam</groupId>
15         <artifactId>platform-logic-setup</artifactId>
16         <version>1.4.3-SNAPSHOT</version>
17         <packaging>pom</packaging>
18
19         <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
20         <description>Copies base ONAP platform-logic</description>
21         
22         <properties>
23                 <ccsdk.distribution.version>0.3.3-SNAPSHOT</ccsdk.distribution.version>
24         </properties>
25
26         <build>
27                 <plugins>
28
29                         <plugin>
30                                 <groupId>org.apache.maven.plugins</groupId>
31                                 <artifactId>maven-dependency-plugin</artifactId>
32                                 <version>3.0.0</version>
33                                 <executions>
34                                         <execution>
35                                                 <id>unpack</id>
36                                                 <phase>validate</phase>
37                                                 <goals>
38                                                         <goal>unpack</goal>
39                                                 </goals>
40                                                 <configuration>
41                                                         <artifactItems>
42                                                                 <artifactItem>
43                                                                         <groupId>org.onap.ccsdk.distribution</groupId>
44                                                                         <artifactId>platform-logic-installer</artifactId>
45                                                                         <version>${ccsdk.distribution.version}</version>
46                                                                         <type>zip</type>
47                                                                         <overWrite>true</overWrite>
48                                                                         <outputDirectory>../target</outputDirectory>
49                                                                 </artifactItem>
50                                                         </artifactItems>
51                                                         <overWriteReleases>false</overWriteReleases>
52                                                         <overWriteSnapshots>true</overWriteSnapshots>
53                                                         <overWriteIfNewer>true</overWriteIfNewer>
54                                                         <localRepositoryDirectory>../target/repository</localRepositoryDirectory>
55                                                 </configuration>
56                                         </execution>
57                                 </executions>
58                         </plugin>
59
60
61
62
63
64                 </plugins>
65         </build>
66 </project>