Restructure project for 2 images
[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</groupId>
24   <artifactId>parent</artifactId>
25   <version>1.1.0-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 <!---
44   <profiles>
45     <profile>
46       <id>docker</id>
47 -->
48       <build>
49         <plugins>
50             <plugin>
51                 <groupId>com.spotify</groupId>
52                 <artifactId>docker-maven-plugin</artifactId>
53                 <version>${docker.maven.plugin.version}</version>
54                 <configuration>
55                     <skipDockerBuild>${skip.docker.build}</skipDockerBuild>
56                 </configuration>
57             </plugin>
58         </plugins>
59       </build>
60 <!---
61     </profile>
62   </profiles>
63 -->
64
65   <modules>
66      <module>dmaap-bc</module>
67      <module>dbc-client</module>
68   </modules>
69 </project>