blob: b7f1cfba215ff088f3e076620d9933753a3f285a [file] [log] [blame]
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05001<!--
2 ============LICENSE_START=======================================================
Guo Ruijing6abeb292017-07-28 08:23:01 +00003 ONAP Policy Engine - Drools PDP
Pamela Dragosh0e16acf2017-02-14 19:45:48 -05004 ================================================================================
jhhe86cca82019-11-19 13:29:41 -06005 Copyright (C) 2017, 2019 AT&T Intellectual Property. All rights reserved.
Rashmi Pujar7937bce2019-06-03 21:45:58 -04006 Modifications Copyright (C) 2019 Bell Canada.
Pamela Dragosh0e16acf2017-02-14 19:45:48 -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 Pujar7937bce2019-06-03 21:45:58 -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">
liamfallon0237fe02019-05-16 09:39:24 +000024 <modelVersion>4.0.0</modelVersion>
liamfallon0237fe02019-05-16 09:39:24 +000025 <parent>
26 <groupId>org.onap.policy.drools-pdp</groupId>
27 <artifactId>drools-pdp</artifactId>
Jim Hahn89a8e322019-09-10 11:22:40 -040028 <version>1.6.0-SNAPSHOT</version>
liamfallon0237fe02019-05-16 09:39:24 +000029 </parent>
liamfallon0237fe02019-05-16 09:39:24 +000030 <artifactId>packages</artifactId>
31 <packaging>pom</packaging>
liamfallon0237fe02019-05-16 09:39:24 +000032 <name>Policy Packages</name>
33 <description>ONAP Policy Drools PDP Installation Packages</description>
Rashmi Pujar7937bce2019-06-03 21:45:58 -040034 <profiles>
35 <profile>
36 <id>default</id>
37 <activation>
38 <activeByDefault>true</activeByDefault>
39 </activation>
jhhe86cca82019-11-19 13:29:41 -060040 <modules>
41 <module>base</module>
42 <module>install</module>
43 </modules>
Rashmi Pujar7937bce2019-06-03 21:45:58 -040044 </profile>
45 <profile>
46 <id>docker</id>
47 <modules>
48 <module>base</module>
49 <module>install</module>
50 <module>docker</module>
51 </modules>
52 <properties>
53 <docker.skip.push>false</docker.skip.push>
54 </properties>
55 </profile>
56 </profiles>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050057</project>