blob: fd9b9866cb7f87d7b40da90be22317f49a119325 [file] [log] [blame]
Dan Timoneye86e05b2017-09-20 15:11:18 -04001<?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
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -05005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney09dc8be2020-02-03 15:03:16 -05008 <version>1.5.1</version>
Timoney, Dan (dt5972)fe8d3bc2019-01-18 16:51:25 -05009 <relativePath/>
Dan Timoneye86e05b2017-09-20 15:11:18 -040010 </parent>
11
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050012 <groupId>org.onap.sdnc.oam</groupId>
Dan Timoneye86e05b2017-09-20 15:11:18 -040013 <artifactId>platform-logic-setup</artifactId>
Timoney, Dan (dt5972)3009eda2019-09-17 16:25:48 -040014 <version>1.8.0-SNAPSHOT</version>
Dan Timoneye86e05b2017-09-20 15:11:18 -040015 <packaging>pom</packaging>
16
Timoney, Dan (dt5972)63298742018-03-01 10:59:28 -050017 <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
Dan Timoneye86e05b2017-09-20 15:11:18 -040018 <description>Copies base ONAP platform-logic</description>
19
Dan Timoneye86e05b2017-09-20 15:11:18 -040020 <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>
Dan Timoneye86e05b2017-09-20 15:11:18 -040059 </build>
60</project>