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. |
danielhanrahan | cf99a6b | 2022-06-28 17:39:32 +0100 | [diff] [blame^] | 5 | Modifications Copyright (C) 2021-2022 Nordix Foundation. |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | |
| 19 | SPDX-License-Identifier: Apache-2.0 |
| 20 | ============LICENSE_END========================================================= |
| 21 | --> |
| 22 | |
| 23 | <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"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.parent</groupId> |
Dmitry Puzikov | 8c0eac4 | 2019-04-17 14:25:46 +0200 | [diff] [blame] | 27 | <artifactId>integration</artifactId> |
liamfallon | 73252ab | 2022-05-03 17:21:35 +0100 | [diff] [blame] | 28 | <version>3.6.0-SNAPSHOT</version> |
Pamela Dragosh | 60a9cf4 | 2019-05-01 11:26:58 -0400 | [diff] [blame] | 29 | <relativePath /> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 30 | </parent> |
| 31 | |
| 32 | <groupId>org.onap.policy.docker</groupId> |
| 33 | <artifactId>docker</artifactId> |
liamfallon | 73252ab | 2022-05-03 17:21:35 +0100 | [diff] [blame] | 34 | <version>2.5.0-SNAPSHOT</version> |
Dmitry Puzikov | 8c0eac4 | 2019-04-17 14:25:46 +0200 | [diff] [blame] | 35 | |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 36 | <packaging>pom</packaging> |
Pamela Dragosh | fbe0609 | 2019-12-02 09:17:42 -0500 | [diff] [blame] | 37 | <name>policy-docker</name> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 38 | |
danielhanrahan | cf99a6b | 2022-06-28 17:39:32 +0100 | [diff] [blame^] | 39 | <build> |
| 40 | <pluginManagement> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <groupId>io.github.git-commit-id</groupId> |
| 44 | <artifactId>git-commit-id-maven-plugin</artifactId> |
| 45 | <version>5.0.0</version> |
| 46 | <executions> |
| 47 | <execution> |
| 48 | <id>get-the-git-infos</id> |
| 49 | <goals> |
| 50 | <goal>revision</goal> |
| 51 | </goals> |
| 52 | <phase>initialize</phase> |
| 53 | </execution> |
| 54 | </executions> |
| 55 | <configuration> |
| 56 | <skipPoms>false</skipPoms> |
| 57 | <generateGitPropertiesFile>true</generateGitPropertiesFile> |
| 58 | <includeOnlyProperties> |
| 59 | <includeOnlyProperty>^git.build.(time|version)$</includeOnlyProperty> |
| 60 | <includeOnlyProperty>^git.commit.id.abbrev$</includeOnlyProperty> |
| 61 | </includeOnlyProperties> |
| 62 | <commitIdGenerationMode>full</commitIdGenerationMode> |
| 63 | </configuration> |
| 64 | </plugin> |
| 65 | </plugins> |
| 66 | </pluginManagement> |
| 67 | </build> |
| 68 | |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 69 | <profiles> |
| 70 | <profile> |
| 71 | <id>docker</id> |
| 72 | <modules> |
Jim Hahn | 0fe2333 | 2020-01-13 16:36:38 -0500 | [diff] [blame] | 73 | <module>policy-jre</module> |
| 74 | <module>policy-jdk</module> |
ktimoney | 89176a2 | 2021-07-28 16:06:13 +0100 | [diff] [blame] | 75 | <module>policy-db-migrator</module> |
Dmitry Puzikov | 7830af0 | 2019-03-27 13:55:13 +0100 | [diff] [blame] | 76 | </modules> |
| 77 | </profile> |
| 78 | </profiles> |
| 79 | </project> |