Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Guo Ruijing | 6abeb29 | 2017-07-28 08:23:01 +0000 | [diff] [blame] | 3 | ONAP Policy Engine - Drools PDP |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 4 | ================================================================================ |
Pamela Dragosh | 55232f5 | 2020-01-15 10:07:10 -0500 | [diff] [blame] | 5 | Copyright (C) 2017, 2019-2020 AT&T Intellectual Property. All rights reserved. |
Ram Krishna Verma | 565dc1f | 2020-02-05 16:51:06 -0500 | [diff] [blame] | 6 | Modifications Copyright (C) 2019-2020 Bell Canada. |
Pamela Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 7 | ================================================================================ |
| 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 Pujar | 7937bce | 2019-06-03 21:45:58 -0400 | [diff] [blame] | 22 | <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"> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 27 | <artifactId>drools-pdp</artifactId> |
Jim Hahn | 89a8e32 | 2019-09-10 11:22:40 -0400 | [diff] [blame] | 28 | <version>1.6.0-SNAPSHOT</version> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 29 | </parent> |
Ram Krishna Verma | 565dc1f | 2020-02-05 16:51:06 -0500 | [diff] [blame] | 30 | <artifactId>drools-packages</artifactId> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 31 | <packaging>pom</packaging> |
liamfallon | 0237fe0 | 2019-05-16 09:39:24 +0000 | [diff] [blame] | 32 | <name>Policy Packages</name> |
| 33 | <description>ONAP Policy Drools PDP Installation Packages</description> |
Pamela Dragosh | 55232f5 | 2020-01-15 10:07:10 -0500 | [diff] [blame] | 34 | |
| 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 Pujar | 7937bce | 2019-06-03 21:45:58 -0400 | [diff] [blame] | 40 | <profiles> |
| 41 | <profile> |
| 42 | <id>default</id> |
| 43 | <activation> |
| 44 | <activeByDefault>true</activeByDefault> |
| 45 | </activation> |
jhh | e86cca8 | 2019-11-19 13:29:41 -0600 | [diff] [blame] | 46 | <modules> |
| 47 | <module>base</module> |
| 48 | <module>install</module> |
| 49 | </modules> |
Rashmi Pujar | 7937bce | 2019-06-03 21:45:58 -0400 | [diff] [blame] | 50 | </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 Dragosh | 0e16acf | 2017-02-14 19:45:48 -0500 | [diff] [blame] | 63 | </project> |