saul.gill | 0d7c828 | 2024-04-25 11:42:08 +0100 | [diff] [blame^] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2019 Ericsson, Tieto. All rights reserved. |
| 4 | Modifications Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 21 | |
| 22 | <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"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | <parent> |
| 25 | <groupId>org.onap.policy.docker</groupId> |
| 26 | <artifactId>docker</artifactId> |
| 27 | <version>3.1.2-SNAPSHOT</version> |
| 28 | </parent> |
| 29 | |
| 30 | <artifactId>policy-jdk</artifactId> |
| 31 | <packaging>pom</packaging> |
| 32 | <name>Policy JDK Docker images</name> |
| 33 | |
| 34 | <properties> |
| 35 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 36 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 37 | <dist.project.version>${project.version}</dist.project.version> |
| 38 | <docker.skip>false</docker.skip> |
| 39 | <docker.skip.build>false</docker.skip.build> |
| 40 | <docker.skip.push>false</docker.skip.push> |
| 41 | <docker.build.version>${project.version}</docker.build.version> |
| 42 | <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format> |
| 43 | </properties> |
| 44 | |
| 45 | <profiles> |
| 46 | <profile> |
| 47 | <id>docker</id> |
| 48 | <modules> |
| 49 | <module>alpine</module> |
| 50 | </modules> |
| 51 | </profile> |
| 52 | </profiles> |
| 53 | </project> |