blob: 39fa17f8137bc6705f06c814b9e0c6375fb3d9a7 [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 ================================================================================
Pamela Dragosh55232f52020-01-15 10:07:10 -05005 Copyright (C) 2017, 2019-2020 AT&T Intellectual Property. All rights reserved.
Ram Krishna Verma565dc1f2020-02-05 16:51:06 -05006 Modifications Copyright (C) 2019-2020 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>
Ram Krishna Verma565dc1f2020-02-05 16:51:06 -050030 <artifactId>drools-packages</artifactId>
liamfallon0237fe02019-05-16 09:39:24 +000031 <packaging>pom</packaging>
liamfallon0237fe02019-05-16 09:39:24 +000032 <name>Policy Packages</name>
33 <description>ONAP Policy Drools PDP Installation Packages</description>
Pamela Dragosh55232f52020-01-15 10:07:10 -050034
35 <properties>
36 <!-- There is no code in this sub-module, only holds interfaces. So skip sonar. -->
37 <sonar.skip>true</sonar.skip>
38 </properties>
39
Rashmi Pujar7937bce2019-06-03 21:45:58 -040040 <profiles>
41 <profile>
42 <id>default</id>
43 <activation>
44 <activeByDefault>true</activeByDefault>
45 </activation>
jhhe86cca82019-11-19 13:29:41 -060046 <modules>
47 <module>base</module>
48 <module>install</module>
49 </modules>
Rashmi Pujar7937bce2019-06-03 21:45:58 -040050 </profile>
51 <profile>
52 <id>docker</id>
53 <modules>
54 <module>base</module>
55 <module>install</module>
56 <module>docker</module>
57 </modules>
58 <properties>
59 <docker.skip.push>false</docker.skip.push>
60 </properties>
61 </profile>
62 </profiles>
Pamela Dragosh0e16acf2017-02-14 19:45:48 -050063</project>