liamfallon | ce63c40 | 2018-07-19 14:27:17 +0100 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | Copyright (C) 2018 Ericsson. All rights reserved. |
Ram Krishna Verma | a535540 | 2020-02-05 16:10:59 -0500 | [diff] [blame] | 4 | Modifications Copyright (C) 2020 Bell Canada. |
liamfallon | ce63c40 | 2018-07-19 14:27:17 +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 | --> |
liamfallon | f4d9fe1 | 2018-10-31 18:23:28 +0000 | [diff] [blame] | 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"> |
liamfallon | ce63c40 | 2018-07-19 14:27:17 +0100 | [diff] [blame] | 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.onap.policy.distribution</groupId> |
| 25 | <artifactId>policy-distribution</artifactId> |
Ram Krishna Verma | 5d1283b | 2020-09-09 13:36:05 -0400 | [diff] [blame] | 26 | <version>2.4.2-SNAPSHOT</version> |
liamfallon | ce63c40 | 2018-07-19 14:27:17 +0100 | [diff] [blame] | 27 | </parent> |
| 28 | |
Ram Krishna Verma | a535540 | 2020-02-05 16:10:59 -0500 | [diff] [blame] | 29 | <artifactId>distribution-main</artifactId> |
liamfallon | ce63c40 | 2018-07-19 14:27:17 +0100 | [diff] [blame] | 30 | |
| 31 | <name>${project.artifactId}</name> |
| 32 | <description>The main module of Policy Distribution that handles startup, lifecycle management, and parameters.</description> |
| 33 | |
liamfallon | 37d8ade | 2018-07-30 16:58:54 +0100 | [diff] [blame] | 34 | <dependencies> |
| 35 | <dependency> |
ramverma | 550d0d9 | 2018-08-08 23:17:37 +0100 | [diff] [blame] | 36 | <groupId>org.onap.policy.distribution</groupId> |
ramverma | d7a69ea | 2018-08-27 17:31:03 +0100 | [diff] [blame] | 37 | <artifactId>reception</artifactId> |
ramverma | 550d0d9 | 2018-08-08 23:17:37 +0100 | [diff] [blame] | 38 | <version>${project.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
liamfallon | 37d8ade | 2018-07-30 16:58:54 +0100 | [diff] [blame] | 41 | <groupId>org.onap.policy.common</groupId> |
ramverma | 7de549e | 2018-08-17 20:38:03 +0100 | [diff] [blame] | 42 | <artifactId>capabilities</artifactId> |
ramverma | ef2ff6b | 2018-08-23 13:50:31 +0100 | [diff] [blame] | 43 | <version>${policy.common.version}</version> |
ramverma | 7de549e | 2018-08-17 20:38:03 +0100 | [diff] [blame] | 44 | </dependency> |
| 45 | <dependency> |
liamfallon | 37d8ade | 2018-07-30 16:58:54 +0100 | [diff] [blame] | 46 | <groupId>commons-cli</groupId> |
| 47 | <artifactId>commons-cli</artifactId> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>com.google.code.gson</groupId> |
| 51 | <artifactId>gson</artifactId> |
| 52 | </dependency> |
ramverma | eb2ea36 | 2019-07-02 20:52:48 +0000 | [diff] [blame] | 53 | <dependency> |
| 54 | <groupId>org.onap.policy.common</groupId> |
| 55 | <artifactId>utils-test</artifactId> |
| 56 | <version>${policy.common.version}</version> |
| 57 | </dependency> |
liamfallon | 37d8ade | 2018-07-30 16:58:54 +0100 | [diff] [blame] | 58 | </dependencies> |
| 59 | |
| 60 | <build> |
| 61 | <resources> |
| 62 | <!-- Output the version of the distribution service --> |
| 63 | <resource> |
| 64 | <directory>src/main/resources</directory> |
| 65 | <filtering>true</filtering> |
| 66 | <includes> |
| 67 | <include>**/version.txt</include> |
| 68 | </includes> |
| 69 | </resource> |
| 70 | <resource> |
| 71 | <directory>src/main/resources</directory> |
| 72 | <filtering>false</filtering> |
| 73 | <excludes> |
| 74 | <exclude>**/version.txt</exclude> |
| 75 | </excludes> |
| 76 | </resource> |
| 77 | </resources> |
| 78 | </build> |
| 79 | |
liamfallon | ce63c40 | 2018-07-19 14:27:17 +0100 | [diff] [blame] | 80 | </project> |