Merge "Run as non-root"
[dmaap/buscontroller.git] / pom.xml
1 <!--* ============LICENSE_START==================================================== 
2    * =========================================================================== 
3    * org.onap.aaf 
4    * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. 
5    * =========================================================================== 
6    * Licensed under the Apache License, Version 2.0 (the "License"); 
7    * you may not use this file except in compliance with the License. 
8    * You may obtain a copy of the License at 
9    * 
10   * http://www.apache.org/licenses/LICENSE-2.0 
11   * 
12   * Unless required by applicable law or agreed to in writing, software 
13   * distributed under the License is distributed on an "AS IS" BASIS, 
14   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
15   * See the License for the specific language governing permissions and 
16   * limitations under the License. 
17   * ============LICENSE_END==================================================== 
18   * -->
19  <project xmlns="http://maven.apache.org/POM/4.0.0"
20         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22   <modelVersion>4.0.0</modelVersion>
23   <groupId>org.onap.dmaap.buscontroller</groupId>
24   <artifactId>parent</artifactId>
25   <version>1.1.1-SNAPSHOT</version>
26   <name>dmaap-buscontroller</name>
27   <packaging>pom</packaging>
28   
29   <parent>
30   <groupId>org.onap.oparent</groupId>
31   <artifactId>oparent</artifactId>
32   <version>1.2.2</version>
33   </parent>
34
35   <properties>
36     <multiproject.basedir>${basedir}</multiproject.basedir>
37         <docker.maven.plugin.version>1.0.0</docker.maven.plugin.version>
38         <skip.docker.build>true</skip.docker.build>
39         <skip.docker.tag>true</skip.docker.tag>
40         <skip.docker.push>true</skip.docker.push>
41   </properties>
42
43   <build>
44     <plugins>
45         <plugin>
46             <groupId>io.fabric8</groupId>
47             <artifactId>docker-maven-plugin</artifactId>
48             <version>0.28.0</version>  
49             <configuration>
50                 <skipDockerBuild>${skip.docker.build}</skipDockerBuild>
51             </configuration>
52         </plugin>
53     </plugins>
54   </build>
55
56   <modules>
57      <module>dmaap-bc</module>
58      <module>dbc-client</module>
59   </modules>
60 </project>