Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
Dmitry Puzikov | c8e918d | 2019-04-02 10:05:05 +0200 | [diff] [blame] | 3 | Copyright (C) 2019 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. |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 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> |
Jim Hahn | 24fec4d | 2021-03-11 11:33:28 -0500 | [diff] [blame] | 27 | <version>2.3.0-SNAPSHOT</version> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 28 | </parent> |
| 29 | |
Jim Hahn | 0fe2333 | 2020-01-13 16:36:38 -0500 | [diff] [blame] | 30 | <artifactId>policy-jre</artifactId> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 31 | <packaging>pom</packaging> |
Jim Hahn | de579e4 | 2020-01-16 10:41:56 -0500 | [diff] [blame] | 32 | <name>Policy JRE Docker images</name> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 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> |
Paul Vaduva | 4da9d44 | 2019-06-27 18:00:57 +0200 | [diff] [blame] | 41 | <docker.pull.registry>docker.io</docker.pull.registry> |
| 42 | <docker.push.registry>docker.io</docker.push.registry> |
RossC | ed382c3 | 2020-06-23 11:19:54 +0100 | [diff] [blame] | 43 | <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 44 | </properties> |
| 45 | |
| 46 | <profiles> |
| 47 | <profile> |
| 48 | <id>docker</id> |
| 49 | <modules> |
| 50 | <module>alpine</module> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 51 | </modules> |
| 52 | </profile> |
| 53 | </profiles> |
| 54 | </project> |