Release version 2.1.2 dockers and roll version
[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.1.3-SNAPSHOT</version>
9     </parent>
10
11     <groupId>org.onap.sdnc.oam</groupId>
12     <artifactId>platform-logic-installer</artifactId>
13     <version>2.1.3-SNAPSHOT</version>
14     <packaging>pom</packaging>
15
16     <name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
17     <description>Contains platform-level service logic installer</description>
18
19     <build>
20         <plugins>
21
22             <plugin>
23                 <artifactId>maven-assembly-plugin</artifactId>
24                 <version>2.6</version>
25                 <executions>
26                     <execution>
27                         <id>create-zip</id>
28                         <goals>
29                             <goal>single</goal>
30                         </goals>
31                         <phase>package</phase>
32                         <configuration>
33                             <attach>true</attach>
34                             <descriptors>
35                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
36                             </descriptors>
37                             <appendAssemblyId>false</appendAssemblyId>
38                         </configuration>
39                     </execution>
40
41                 </executions>
42             </plugin>
43
44         </plugins>
45     </build>
46 </project>