blob: 28d645b09b922a2e08247ab7b12f6a0237e7dacb [file] [log] [blame]
liamfallonce63c402018-07-19 14:27:17 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
Ram Krishna Vermaa5355402020-02-05 16:10:59 -05004 Modifications Copyright (C) 2020 Bell Canada.
liamfallonce63c402018-07-19 14:27:17 +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-->
liamfallonf4d9fe12018-10-31 18:23:28 +000021<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">
liamfallonce63c402018-07-19 14:27:17 +010022 <modelVersion>4.0.0</modelVersion>
23 <parent>
24 <groupId>org.onap.policy.distribution</groupId>
25 <artifactId>policy-distribution</artifactId>
Ram Krishna Verma5d1283b2020-09-09 13:36:05 -040026 <version>2.4.2-SNAPSHOT</version>
liamfallonce63c402018-07-19 14:27:17 +010027 </parent>
28
Ram Krishna Vermaa5355402020-02-05 16:10:59 -050029 <artifactId>distribution-main</artifactId>
liamfallonce63c402018-07-19 14:27:17 +010030
31 <name>${project.artifactId}</name>
32 <description>The main module of Policy Distribution that handles startup, lifecycle management, and parameters.</description>
33
liamfallon37d8ade2018-07-30 16:58:54 +010034 <dependencies>
35 <dependency>
ramverma550d0d92018-08-08 23:17:37 +010036 <groupId>org.onap.policy.distribution</groupId>
ramvermad7a69ea2018-08-27 17:31:03 +010037 <artifactId>reception</artifactId>
ramverma550d0d92018-08-08 23:17:37 +010038 <version>${project.version}</version>
39 </dependency>
40 <dependency>
liamfallon37d8ade2018-07-30 16:58:54 +010041 <groupId>org.onap.policy.common</groupId>
ramverma7de549e2018-08-17 20:38:03 +010042 <artifactId>capabilities</artifactId>
ramvermaef2ff6b2018-08-23 13:50:31 +010043 <version>${policy.common.version}</version>
ramverma7de549e2018-08-17 20:38:03 +010044 </dependency>
45 <dependency>
liamfallon37d8ade2018-07-30 16:58:54 +010046 <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>
ramvermaeb2ea362019-07-02 20:52:48 +000053 <dependency>
54 <groupId>org.onap.policy.common</groupId>
55 <artifactId>utils-test</artifactId>
56 <version>${policy.common.version}</version>
57 </dependency>
liamfallon37d8ade2018-07-30 16:58:54 +010058 </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
liamfallonce63c402018-07-19 14:27:17 +010080</project>