small, multi-platform docker images
[dmaap/datarouter.git] / datarouter-docker-compose / pom.xml
1 <!--
2   ============LICENSE_START==================================================
3   * org.onap.dmaap
4   * ===========================================================================
5   * Copyright (C) 2018 Nokia. All rights reserved.
6   * ===========================================================================
7   * Licensed under the Apache License, Version 2.0 (the "License");
8   * you may not use this file except in compliance with the License.
9   * You may obtain a copy of the License at
10   *
11    *      http://www.apache.org/licenses/LICENSE-2.0
12   *
13    * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   * ============LICENSE_END====================================================
19   *
20   * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21   *
22 -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
25   <modelVersion>4.0.0</modelVersion>
26   <parent>
27     <groupId>org.onap.dmaap.datarouter</groupId>
28     <artifactId>parent</artifactId>
29     <version>2.0.2-SNAPSHOT</version>
30     <relativePath>../pom.xml</relativePath>
31   </parent>
32   <artifactId>datarouter-docker-compose</artifactId>
33   <packaging>pom</packaging>
34   <name>datarouter-docker-compose</name>
35   <properties>
36     <sonar.skip>true</sonar.skip>
37   </properties>
38   <build>
39     <finalName>datarouter-docker-compose</finalName>
40     <plugins>
41       <plugin>
42         <groupId>org.apache.maven.plugins</groupId>
43         <artifactId>maven-assembly-plugin</artifactId>
44         <executions>
45           <execution>
46             <phase>package</phase>
47             <goals>
48               <goal>single</goal>
49             </goals>
50             <configuration>
51               <appendAssemblyId>false</appendAssemblyId>
52               <descriptors>
53                 <descriptor>src/assembly/zip.xml</descriptor>
54               </descriptors>
55             </configuration>
56           </execution>
57         </executions>
58       </plugin>
59     </plugins>
60   </build>
61 </project>