RehanRaza | dbadd6e | 2019-11-12 20:10:43 +0100 | [diff] [blame] | 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 | <repositories> |
| 6 | <repository> |
| 7 | <id>onap-releases</id> |
| 8 | <name>onap-releases</name> |
| 9 | <url>https://nexus.onap.org/content/repositories/releases/</url> |
| 10 | </repository> |
| 11 | </repositories> |
| 12 | |
| 13 | <parent> |
| 14 | <groupId>org.onap.ccsdk.parent</groupId> |
| 15 | <artifactId>odlparent-lite</artifactId> |
| 16 | <version>1.4.3</version> |
| 17 | <relativePath/> |
| 18 | </parent> |
| 19 | |
| 20 | <groupId>org.onap.sdnc.oam</groupId> |
| 21 | <artifactId>platform-logic-setup</artifactId> |
| 22 | <version>1.7.3-SNAPSHOT</version> |
| 23 | <packaging>pom</packaging> |
| 24 | |
| 25 | <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name> |
| 26 | <description>Copies base ONAP platform-logic</description> |
| 27 | |
| 28 | <build> |
| 29 | <plugins> |
| 30 | |
| 31 | <plugin> |
| 32 | <groupId>org.apache.maven.plugins</groupId> |
| 33 | <artifactId>maven-dependency-plugin</artifactId> |
| 34 | <version>3.0.0</version> |
| 35 | <executions> |
| 36 | <execution> |
| 37 | <id>unpack</id> |
| 38 | <phase>validate</phase> |
| 39 | <goals> |
| 40 | <goal>unpack</goal> |
| 41 | </goals> |
| 42 | <configuration> |
| 43 | <artifactItems> |
| 44 | <artifactItem> |
| 45 | <groupId>org.onap.ccsdk.distribution</groupId> |
| 46 | <artifactId>platform-logic-installer</artifactId> |
| 47 | <version>${ccsdk.distribution.version}</version> |
| 48 | <type>zip</type> |
| 49 | <overWrite>true</overWrite> |
| 50 | <outputDirectory>../target</outputDirectory> |
| 51 | </artifactItem> |
| 52 | </artifactItems> |
| 53 | <overWriteReleases>false</overWriteReleases> |
| 54 | <overWriteSnapshots>true</overWriteSnapshots> |
| 55 | <overWriteIfNewer>true</overWriteIfNewer> |
| 56 | <localRepositoryDirectory>../target/repository</localRepositoryDirectory> |
| 57 | </configuration> |
| 58 | </execution> |
| 59 | </executions> |
| 60 | </plugin> |
| 61 | |
| 62 | |
| 63 | |
| 64 | |
| 65 | |
| 66 | </plugins> |
| 67 | </build> |
| 68 | </project> |