blob: cc0d588dfe1d5d15e8103fdaf76f6156a83e1680 [file] [log] [blame]
Dmitry Puzikov7830af02019-03-27 13:55:13 +01001<!--
2 ============LICENSE_START=======================================================
Dmitry Puzikovc8e918d2019-04-02 10:05:05 +02003 Copyright (C) 2019 Ericsson, Tieto. All rights reserved.
Jim Hahn0fe23332020-01-13 16:36:38 -05004 Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
Dmitry Puzikov7830af02019-03-27 13:55:13 +01005 ================================================================================
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>
Paul Vaduva4da9d442019-06-27 18:00:57 +020027 <version>2.0.0-SNAPSHOT</version>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010028 </parent>
29
Jim Hahn0fe23332020-01-13 16:36:38 -050030 <artifactId>policy-jre</artifactId>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010031 <packaging>pom</packaging>
32 <name>Policy Base 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>
Paul Vaduva4da9d442019-06-27 18:00:57 +020041 <docker.pull.registry>docker.io</docker.pull.registry>
42 <docker.push.registry>docker.io</docker.push.registry>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010043 </properties>
44
45 <profiles>
46 <profile>
47 <id>docker</id>
48 <modules>
Jim Hahn8db243a2020-01-15 11:09:14 -050049 <!-- pretty frequently, alpine fails to build, so removing
50 it for now
Dmitry Puzikov7830af02019-03-27 13:55:13 +010051 <module>alpine</module>
Jim Hahn8db243a2020-01-15 11:09:14 -050052 -->
Jim Hahn0fe23332020-01-13 16:36:38 -050053 <module>debian-slim</module>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010054 </modules>
55 </profile>
56 </profiles>
57</project>