blob: 7d1c35556eee65d7949c902f6f22f37d1b14ab3d [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.
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -05006 Modifications Copyright (C) 2019-2020 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>
liamfallon83b1c172022-05-03 09:37:18 +010029 <version>1.10.4-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>
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -050032 <artifactId>drools-applications-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>
jhh319256b2019-11-19 16:43:00 -060041 <modules>
42 <module>basex-controlloop</module>
43 <module>artifacts-controlloop</module>
44 <module>apps-controlloop</module>
45 </modules>
Rashmi Pujar19cade12019-06-03 17:14:45 -040046 </profile>
47 <profile>
48 <id>docker</id>
49 <modules>
50 <module>basex-controlloop</module>
51 <module>artifacts-controlloop</module>
52 <module>apps-controlloop</module>
53 <module>docker-controlloop</module>
54 </modules>
55 <properties>
56 <docker.skip.push>false</docker.skip.push>
57 </properties>
58 </profile>
59 </profiles>
Pamela Dragosha6557b02017-02-14 19:49:32 -050060</project>