blob: d196fbaf731dcb64cb3b326f01e5b7ecb5a7d04e [file] [log] [blame]
Pamela Dragosh91d04c62017-02-14 19:41:00 -05001<!--
2 ============LICENSE_START=======================================================
Guo Ruijing073cc182017-07-31 08:47:35 +00003 ONAP Policy Engine
Pamela Dragosh91d04c62017-02-14 19:41:00 -05004 ================================================================================
bobbymandercc021602018-03-28 15:05:33 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Pamela Dragosh91d04c62017-02-14 19:41:00 -05006 ================================================================================
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">
Pamela Dragosh91d04c62017-02-14 19:41:00 -050023 <modelVersion>4.0.0</modelVersion>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050024 <parent>
Guo Ruijing073cc182017-07-31 08:47:35 +000025 <groupId>org.onap.policy.engine</groupId>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050026 <artifactId>PolicyEngineSuite</artifactId>
liamfallon56a23de2018-06-05 17:03:32 +010027 <version>1.3.0-SNAPSHOT</version>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050028 </parent>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050029 <artifactId>packages</artifactId>
30 <packaging>pom</packaging>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050031 <name>Policy Packages</name>
Guo Ruijing073cc182017-07-31 08:47:35 +000032 <description>D2 ONAP Policy Installation Packages</description>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050033 <profiles>
34 <!-- DO NOT CHANGE THE *ORDER* IN WHICH THESE PROFILES ARE DEFINED! -->
Pamela Dragosh91d04c62017-02-14 19:41:00 -050035 <profile>
36 <id>default</id>
37 <activation>
38 <activeByDefault>true</activeByDefault>
39 </activation>
40 <modules>
41 <module>base</module>
42 <module>install</module>
mmis13368732018-03-01 16:50:11 +000043 <module>docker</module>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050044 </modules>
45 </profile>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050046 <profile>
47 <id>with-integration-tests</id>
48 <modules>
49 <module>base</module>
50 <module>install</module>
51 </modules>
52 </profile>
53 </profiles>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050054 <modules>
55 <module>base</module>
56 <module>install</module>
mmis13368732018-03-01 16:50:11 +000057 <module>docker</module>
Pamela Dragosh91d04c62017-02-14 19:41:00 -050058 </modules>
59</project>