blob: e8db610633337212f8727d114f79c87e6daf7146 [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 Hahn553ce372021-07-19 15:15:05 -04004 Modifications Copyright (C) 2020-2021 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>
liamfallon8e0f7312022-10-20 20:11:54 +010027 <version>2.5.2-SNAPSHOT</version>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010028 </parent>
29
Jim Hahn0fe23332020-01-13 16:36:38 -050030 <artifactId>policy-jdk</artifactId>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010031 <packaging>pom</packaging>
Jim Hahnde579e42020-01-16 10:41:56 -050032 <name>Policy JDK Docker images</name>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010033
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>
Dmitry Puzikovc8e918d2019-04-02 10:05:05 +020041 <docker.build.version>${project.version}</docker.build.version>
RossCed382c32020-06-23 11:19:54 +010042 <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010043 </properties>
44
45 <profiles>
46 <profile>
47 <id>docker</id>
48 <modules>
49 <module>alpine</module>
Dmitry Puzikov7830af02019-03-27 13:55:13 +010050 </modules>
51 </profile>
52 </profiles>
53</project>