Chore: Add gerrit maven verify GHA workflow
[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.7.0-SNAPSHOT</version>
9     </parent>
10
11     <artifactId>platform-logic-setup</artifactId>
12     <packaging>pom</packaging>
13
14     <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
15     <description>Copies base ONAP platform-logic</description>
16     <dependencies>
17         <dependency>
18             <groupId>org.onap.ccsdk.distribution</groupId>
19             <artifactId>platform-logic-installer</artifactId>
20             <version>${ccsdk.distribution.version}</version>
21             <type>zip</type>
22         </dependency>
23     </dependencies>
24
25     <build>
26         <plugins>
27
28             <plugin>
29                 <groupId>org.apache.maven.plugins</groupId>
30                 <artifactId>maven-dependency-plugin</artifactId>
31                 <version>3.0.0</version>
32                 <executions>
33                     <execution>
34                         <id>unpack-dgs</id>
35                         <phase>validate</phase>
36                         <goals>
37                             <goal>unpack-dependencies</goal>
38                         </goals>
39                         <configuration>
40                             <outputDirectory>../target</outputDirectory>
41                             <excludeTransitive>true</excludeTransitive>
42                         </configuration>
43                     </execution>
44                 </executions>
45             </plugin>
46         </plugins>
47     </build>
48 </project>