blob: a218c6b4869209820eb60ca31e3e11ca7964a438 [file] [log] [blame]
liamfallonce63c402018-07-19 14:27:17 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
4 ================================================================================
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16
17 SPDX-License-Identifier: Apache-2.0
18 ============LICENSE_END=========================================================
19-->
liamfallonf4d9fe12018-10-31 18:23:28 +000020<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 +010021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.onap.policy.distribution</groupId>
24 <artifactId>policy-distribution</artifactId>
Jim Hahna210e7d2019-09-16 16:51:15 -040025 <version>2.3.0-SNAPSHOT</version>
liamfallonce63c402018-07-19 14:27:17 +010026 </parent>
27
liamfallonce63c402018-07-19 14:27:17 +010028 <artifactId>main</artifactId>
liamfallonce63c402018-07-19 14:27:17 +010029
30 <name>${project.artifactId}</name>
31 <description>The main module of Policy Distribution that handles startup, lifecycle management, and parameters.</description>
32
liamfallon37d8ade2018-07-30 16:58:54 +010033 <dependencies>
34 <dependency>
ramverma550d0d92018-08-08 23:17:37 +010035 <groupId>org.onap.policy.distribution</groupId>
ramvermad7a69ea2018-08-27 17:31:03 +010036 <artifactId>reception</artifactId>
ramverma550d0d92018-08-08 23:17:37 +010037 <version>${project.version}</version>
38 </dependency>
39 <dependency>
liamfallon37d8ade2018-07-30 16:58:54 +010040 <groupId>org.onap.policy.common</groupId>
ramverma7de549e2018-08-17 20:38:03 +010041 <artifactId>capabilities</artifactId>
ramvermaef2ff6b2018-08-23 13:50:31 +010042 <version>${policy.common.version}</version>
ramverma7de549e2018-08-17 20:38:03 +010043 </dependency>
44 <dependency>
liamfallon37d8ade2018-07-30 16:58:54 +010045 <groupId>commons-cli</groupId>
46 <artifactId>commons-cli</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>com.google.code.gson</groupId>
50 <artifactId>gson</artifactId>
51 </dependency>
ramvermaeb2ea362019-07-02 20:52:48 +000052 <dependency>
53 <groupId>org.onap.policy.common</groupId>
54 <artifactId>utils-test</artifactId>
55 <version>${policy.common.version}</version>
56 </dependency>
liamfallon37d8ade2018-07-30 16:58:54 +010057 </dependencies>
58
59 <build>
60 <resources>
61 <!-- Output the version of the distribution service -->
62 <resource>
63 <directory>src/main/resources</directory>
64 <filtering>true</filtering>
65 <includes>
66 <include>**/version.txt</include>
67 </includes>
68 </resource>
69 <resource>
70 <directory>src/main/resources</directory>
71 <filtering>false</filtering>
72 <excludes>
73 <exclude>**/version.txt</exclude>
74 </excludes>
75 </resource>
76 </resources>
77 </build>
78
liamfallonce63c402018-07-19 14:27:17 +010079</project>