blob: 3c3e9064ea7eb3042af95a8c0e4b75ad7502028b (
plain)
ofs | hex dump | ascii |
---|
0000 | 89 50 4e 47 0d 0a 1a 0a 00 00 00 0d 49 48 44 52 00 00 01 e4 00 00 02 f8 08 06 00 00 00 aa 52 84 | .PNG........IHDR..............R. |
0020 | 84 00 00 00 01 73 52 47 42 00 ae ce 1c e9 00 00 00 04 67 41 4d 41 00 00 b1 8f 0b fc 61 05 00 00 | .....sRGB.........gAMA......a... |
0040 | 00 09 70 48 59 73 00 00 0e c4 00 00 0e c4 01 95 2b 0e 1b 00 00 fb 9b 49 44 41 54 78 5e ec fd 0b | ..pHYs..........+......IDATx^... |
0060 | 78 1c d5 99 ef 0b ff 25 db c2 96 e4 ab c6 10 3e 9b 98 61 ab 1d 46 6e 20 b0 03 09 12 9c f1 b0 79 | x......%.......>..a..Fn........y |
0080 | 74 22 39 89 c5 4d c0 6c 32 1a 32 6c e9 1c 38 19 69 67 ec c9 17 a2 c9 78 76 04 81 08 13 79 60 27 | t"9..M.l2.2l.<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.onap.sdnc.oam</groupId>
<artifactId>platform-logic</artifactId>
<version>2.4.0-SNAPSHOT</version>
</parent>
<artifactId>platform-logic-installer</artifactId>
<packaging>pom</packaging>
<name>sdnc-oam :: platform-logic :: ${project.artifactId}</name>
<description>Contains platform-level service logic installer</description>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<id>create-zip</id>
<goals>
<goal>single</goal>
</goals>
<phase>package</phase>
<configuration>
<attach>true</attach>
<descriptors>
<descriptor>src/assembly/assemble_zip.xml</descriptor>
</descriptors>
<appendAssemblyId>false</appendAssemblyId>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
|