blob: 4726202fc9603c77fed2d8da14a2fb4c3e8aae8a [file] [log] [blame]
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05001<?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>
Dan Timoney98ddb132017-09-01 17:40:45 -04006 <groupId>org.onap.sdnc.oam</groupId>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05007 <artifactId>platform-logic</artifactId>
Dan Timoney598c7432017-11-09 07:54:38 -05008 <version>1.2.1-SNAPSHOT</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -05009 </parent>
10
11 <modelVersion>4.0.0</modelVersion>
12 <packaging>pom</packaging>
Dan Timoney98ddb132017-09-01 17:40:45 -040013 <groupId>org.onap.sdnc.oam</groupId>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050014 <artifactId>platform-logic-installer</artifactId>
Dan Timoney598c7432017-11-09 07:54:38 -050015 <version>1.2.1-SNAPSHOT</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050016
17 <name>Platform Logic Installer</name>
18 <description>Contains platform-level service logic installer</description>
19
20
21
22 <build>
23 <plugins>
Dan Timoneye86e05b2017-09-20 15:11:18 -040024
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050025 <plugin>
26 <artifactId>maven-assembly-plugin</artifactId>
Guo Ruijinga5aae992017-05-07 19:08:00 +000027 <version>2.6</version>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050028 <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>
Guo Ruijinga5aae992017-05-07 19:08:00 +000040 <appendAssemblyId>false</appendAssemblyId>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050041 </configuration>
42 </execution>
43
44 </executions>
45 </plugin>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050046
Dan Timoneye86e05b2017-09-20 15:11:18 -040047 </plugins>
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050048 </build>
Dan Timoneye86e05b2017-09-20 15:11:18 -040049
Timoney, Daniel (dt5972)324ee362017-02-15 10:37:53 -050050
51</project>