Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 3 | ONAP Policy Engine |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | --> |
| 20 | |
| 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <parent> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 27 | <groupId>org.onap.policy.engine</groupId> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 28 | <artifactId>PolicyEngineSuite</artifactId> |
Pamela Dragosh | 3234eb0 | 2017-03-10 14:54:53 -0500 | [diff] [blame] | 29 | <version>1.1.0-SNAPSHOT</version> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 30 | </parent> |
| 31 | |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 32 | <artifactId>packages</artifactId> |
| 33 | <packaging>pom</packaging> |
| 34 | |
| 35 | <name>Policy Packages</name> |
Guo Ruijing | 073cc18 | 2017-07-31 08:47:35 +0000 | [diff] [blame] | 36 | <description>D2 ONAP Policy Installation Packages</description> |
Pamela Dragosh | 91d04c6 | 2017-02-14 19:41:00 -0500 | [diff] [blame] | 37 | |
| 38 | <profiles> |
| 39 | <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! --> |
| 40 | |
| 41 | <profile> |
| 42 | <id>default</id> |
| 43 | <activation> |
| 44 | <activeByDefault>true</activeByDefault> |
| 45 | </activation> |
| 46 | <modules> |
| 47 | <module>base</module> |
| 48 | <module>install</module> |
| 49 | </modules> |
| 50 | </profile> |
| 51 | |
| 52 | <profile> |
| 53 | <id>with-integration-tests</id> |
| 54 | <modules> |
| 55 | <module>base</module> |
| 56 | <module>install</module> |
| 57 | </modules> |
| 58 | </profile> |
| 59 | </profiles> |
| 60 | |
| 61 | <modules> |
| 62 | <module>base</module> |
| 63 | <module>install</module> |
| 64 | </modules> |
| 65 | </project> |