Bump minor 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"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4
5         <parent>
6                 <groupId>org.onap.sdnc.oam</groupId>
7                 <artifactId>platform-logic</artifactId>
8                 <version>1.3.0-SNAPSHOT</version>
9         </parent>
10
11         <modelVersion>4.0.0</modelVersion>
12         <packaging>pom</packaging>
13         <groupId>org.onap.sdnc.oam</groupId>
14         <artifactId>platform-logic-installer</artifactId>
15         <version>1.3.0-SNAPSHOT</version>
16
17         <name>Platform Logic Installer</name>
18         <description>Contains platform-level service logic installer</description>
19
20
21
22         <build>
23                 <plugins>
24
25                         <plugin>
26                                 <artifactId>maven-assembly-plugin</artifactId>
27                                 <version>2.6</version>
28                                 <executions>
29                                         <execution>
30                                                 <id>create-zip</id>
31                                                 <goals>
32                                                         <goal>single</goal>
33                                                 </goals>
34                                                 <phase>package</phase>
35                                                 <configuration>
36                                                         <attach>true</attach>
37                                                         <descriptors>
38                                                                 <descriptor>src/assembly/assemble_zip.xml</descriptor>
39                                                         </descriptors>
40                                                         <appendAssemblyId>false</appendAssemblyId>
41                                                 </configuration>
42                                         </execution>
43
44                                 </executions>
45                         </plugin>
46
47         </plugins>
48         </build>
49
50
51 </project>