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. |
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.parent</groupId> |
Dmitry Puzikov | 8c0eac4 | 2019-04-17 14:25:46 +0200 | [diff] [blame] | 26 | <artifactId>integration</artifactId> |
Paul Vaduva | 4da9d44 | 2019-06-27 18:00:57 +0200 | [diff] [blame] | 27 | <version>3.0.1</version> |
Pamela Dragosh | 60a9cf4 | 2019-05-01 11:26:58 -0400 | [diff] [blame] | 28 | <relativePath /> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <groupId>org.onap.policy.docker</groupId> |
| 32 | <artifactId>docker</artifactId> |
Paul Vaduva | 4da9d44 | 2019-06-27 18:00:57 +0200 | [diff] [blame] | 33 | <version>2.0.0-SNAPSHOT</version> |
Dmitry Puzikov | 8c0eac4 | 2019-04-17 14:25:46 +0200 | [diff] [blame] | 34 | |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 35 | <packaging>pom</packaging> |
Pamela Dragosh | fbe0609 | 2019-12-02 09:17:42 -0500 | [diff] [blame] | 36 | <name>policy-docker</name> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 37 | <properties> |
| 38 | <!-- Project common build settings --> |
| 39 | <maven.compiler.source>1.8</maven.compiler.source> |
| 40 | <maven.compiler.target>1.8</maven.compiler.target> |
| 41 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 42 | </properties> |
| 43 | |
| 44 | <profiles> |
| 45 | <profile> |
| 46 | <id>docker</id> |
| 47 | <modules> |
Jim Hahn | 0fe2333 | 2020-01-13 16:36:38 -0500 | [diff] [blame^] | 48 | <module>policy-jre</module> |
| 49 | <module>policy-jdk</module> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 50 | </modules> |
| 51 | </profile> |
| 52 | </profiles> |
| 53 | </project> |