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. |
| 4 | ================================================================================ |
| 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | you may not use this file except in compliance with the License. |
| 7 | You may obtain a copy of the License at |
| 8 | |
| 9 | http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | Unless required by applicable law or agreed to in writing, software |
| 12 | distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | See the License for the specific language governing permissions and |
| 15 | limitations under the License. |
| 16 | |
| 17 | SPDX-License-Identifier: Apache-2.0 |
| 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.docker</groupId> |
| 25 | <artifactId>docker</artifactId> |
| 26 | <version>2.1.0-SNAPSHOT</version> |
| 27 | </parent> |
| 28 | |
| 29 | <artifactId>policy-base</artifactId> |
| 30 | <packaging>pom</packaging> |
| 31 | <name>Policy Base Docker images</name> |
| 32 | |
| 33 | <properties> |
| 34 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 35 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 36 | <dist.project.version>${project.version}</dist.project.version> |
| 37 | <docker.skip>false</docker.skip> |
| 38 | <docker.skip.build>false</docker.skip.build> |
| 39 | <docker.skip.push>false</docker.skip.push> |
| 40 | <docker.pull.registry>nexus3.onap.org:10001</docker.pull.registry> |
| 41 | <docker.push.registry>nexus3.onap.org:10003</docker.push.registry> |
| 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> |