blob: 968b35198e7c6c794b533a6c957ae6a28e72e320 [file] [log] [blame]
Dmitry Puzikov7830af02019-03-27 13:55:13 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson, Tieto. All rights reserved.
Jim Hahn0fe23332020-01-13 16:36:38 -05004 Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
danielhanrahancf99a6b2022-06-28 17:39:32 +01005 Modifications Copyright (C) 2021-2022 Nordix Foundation.
Dmitry Puzikov7830af02019-03-27 13:55:13 +01006 ================================================================================
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
19 SPDX-License-Identifier: Apache-2.0
20 ============LICENSE_END=========================================================
21-->
22
23<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.policy.parent</groupId>
Dmitry Puzikov8c0eac42019-04-17 14:25:46 +020027 <artifactId>integration</artifactId>
rameshiyer273ed55ca2024-11-18 15:09:55 +000028 <version>5.0.2-SNAPSHOT</version>
Pamela Dragosh60a9cf42019-05-01 11:26:58 -040029 <relativePath />
Dmitry Puzikov7830af02019-03-27 13:55:13 +010030 </parent>
31
32 <groupId>org.onap.policy.docker</groupId>
33 <artifactId>docker</artifactId>
rameshiyer273ed55ca2024-11-18 15:09:55 +000034 <version>4.0.2-SNAPSHOT</version>
Dmitry Puzikov8c0eac42019-04-17 14:25:46 +020035
Dmitry Puzikov7830af02019-03-27 13:55:13 +010036 <packaging>pom</packaging>
Pamela Dragoshfbe06092019-12-02 09:17:42 -050037 <name>policy-docker</name>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010038
39 <profiles>
40 <profile>
41 <id>docker</id>
42 <modules>
Jim Hahn0fe23332020-01-13 16:36:38 -050043 <module>policy-jre</module>
44 <module>policy-jdk</module>
ktimoney89176a22021-07-28 16:06:13 +010045 <module>policy-db-migrator</module>
rameshiyer27b15eda62024-02-14 10:13:16 +000046 <module>policy-regression-tests</module>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010047 </modules>
48 </profile>
danielhanrahan5bd5f402022-10-18 13:20:13 +010049 <profile>
50 <id>dockersuse</id>
51 <modules>
52 <module>policy-jre</module>
53 <module>policy-jdk</module>
54 <module>policy-db-migrator</module>
rameshiyer27b15eda62024-02-14 10:13:16 +000055 <module>policy-regression-tests</module>
danielhanrahan5bd5f402022-10-18 13:20:13 +010056 </modules>
57 <properties>
58 <docker.dbm.dockerFile>suse.Dockerfile</docker.dbm.dockerFile>
59 </properties>
60 </profile>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010061 </profiles>
62</project>