Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson, Tieto. All rights reserved. |
Jim Hahn | 0fe2333 | 2020-01-13 16:36:38 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
danielhanrahan | cf99a6b | 2022-06-28 17:39:32 +0100 | [diff] [blame] | 5 | Modifications Copyright (C) 2021-2022 Nordix Foundation. |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 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 | |
| 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 Puzikov | 8c0eac4 | 2019-04-17 14:25:46 +0200 | [diff] [blame] | 27 | <artifactId>integration</artifactId> |
rameshiyer27 | 3ed55ca | 2024-11-18 15:09:55 +0000 | [diff] [blame] | 28 | <version>5.0.2-SNAPSHOT</version> |
Pamela Dragosh | 60a9cf4 | 2019-05-01 11:26:58 -0400 | [diff] [blame] | 29 | <relativePath /> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <groupId>org.onap.policy.docker</groupId> |
| 33 | <artifactId>docker</artifactId> |
rameshiyer27 | 3ed55ca | 2024-11-18 15:09:55 +0000 | [diff] [blame] | 34 | <version>4.0.2-SNAPSHOT</version> |
Dmitry Puzikov | 8c0eac4 | 2019-04-17 14:25:46 +0200 | [diff] [blame] | 35 | |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 36 | <packaging>pom</packaging> |
Pamela Dragosh | fbe0609 | 2019-12-02 09:17:42 -0500 | [diff] [blame] | 37 | <name>policy-docker</name> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 38 | |
| 39 | <profiles> |
| 40 | <profile> |
| 41 | <id>docker</id> |
| 42 | <modules> |
Jim Hahn | 0fe2333 | 2020-01-13 16:36:38 -0500 | [diff] [blame] | 43 | <module>policy-jre</module> |
| 44 | <module>policy-jdk</module> |
ktimoney | 89176a2 | 2021-07-28 16:06:13 +0100 | [diff] [blame] | 45 | <module>policy-db-migrator</module> |
rameshiyer27 | b15eda6 | 2024-02-14 10:13:16 +0000 | [diff] [blame] | 46 | <module>policy-regression-tests</module> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 47 | </modules> |
| 48 | </profile> |
danielhanrahan | 5bd5f40 | 2022-10-18 13:20:13 +0100 | [diff] [blame] | 49 | <profile> |
| 50 | <id>dockersuse</id> |
| 51 | <modules> |
| 52 | <module>policy-jre</module> |
| 53 | <module>policy-jdk</module> |
| 54 | <module>policy-db-migrator</module> |
rameshiyer27 | b15eda6 | 2024-02-14 10:13:16 +0000 | [diff] [blame] | 55 | <module>policy-regression-tests</module> |
danielhanrahan | 5bd5f40 | 2022-10-18 13:20:13 +0100 | [diff] [blame] | 56 | </modules> |
| 57 | <properties> |
| 58 | <docker.dbm.dockerFile>suse.Dockerfile</docker.dbm.dockerFile> |
| 59 | </properties> |
| 60 | </profile> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 61 | </profiles> |
| 62 | </project> |