Chore: Add gerrit maven verify GHA workflow
[sdnc/oam.git] / platform-logic / installer / 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-installer</artifactId>
12     <packaging>pom</packaging>
13
14     <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
15     <description>Contains platform-level service logic installer</description>
16
17     <build>
18         <plugins>
19
20             <plugin>
21                 <artifactId>maven-assembly-plugin</artifactId>
22                 <version>2.6</version>
23                 <executions>
24                     <execution>
25                         <id>create-zip</id>
26                         <goals>
27                             <goal>single</goal>
28                         </goals>
29                         <phase>package</phase>
30                         <configuration>
31                             <attach>true</attach>
32                             <descriptors>
33                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
34                             </descriptors>
35                             <appendAssemblyId>false</appendAssemblyId>
36                         </configuration>
37                     </execution>
38
39                 </executions>
40             </plugin>
41
42         </plugins>
43     </build>
44 </project>