blob: 9c5a99a9579772dcf0a2fc8104f8792c1bd885e4 [file] [log] [blame]
Pamela Dragosha6557b02017-02-14 19:49:32 -05001<!--
2 ============LICENSE_START=======================================================
3 Drools PDP Application Models
4 ================================================================================
Jorge Hernandez638480e2019-02-07 15:58:58 -06005 Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved.
Rashmi Pujar19cade12019-06-03 17:14:45 -04006 Modifications Copyright (C) 2019 Bell Canada.
Pamela Dragosha6557b02017-02-14 19:49:32 -05007 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21
Rashmi Pujar19cade12019-06-03 17:14:45 -040022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
liamfallondef0f112018-02-13 11:29:56 +000024 <modelVersion>4.0.0</modelVersion>
25 <packaging>pom</packaging>
liamfallondef0f112018-02-13 11:29:56 +000026 <parent>
27 <groupId>org.onap.policy.drools-applications.controlloop</groupId>
28 <artifactId>controlloop</artifactId>
Jim Hahn3e5c2442019-09-10 12:04:00 -040029 <version>1.6.0-SNAPSHOT</version>
liamfallondef0f112018-02-13 11:29:56 +000030 </parent>
liamfallondef0f112018-02-13 11:29:56 +000031 <groupId>org.onap.policy.drools-applications.controlloop.packages</groupId>
32 <artifactId>packages</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000033 <name>PDP-D Application Installation Packages</name>
34 <description>PDP-D Installation</description>
Rashmi Pujar19cade12019-06-03 17:14:45 -040035 <profiles>
36 <profile>
37 <id>default</id>
38 <activation>
39 <activeByDefault>true</activeByDefault>
40 </activation>
41 </profile>
42 <profile>
43 <id>docker</id>
44 <modules>
45 <module>basex-controlloop</module>
46 <module>artifacts-controlloop</module>
47 <module>apps-controlloop</module>
48 <module>docker-controlloop</module>
49 </modules>
50 <properties>
51 <docker.skip.push>false</docker.skip.push>
52 </properties>
53 </profile>
54 </profiles>
Pamela Dragosha6557b02017-02-14 19:49:32 -050055</project>