blob: 13839887e05e7b500896f20bda23e620334343bc [file] [log] [blame]
Krishnajinkada9e01a2018-08-31 20:01:30 +09001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
4 Modified Copyright (C) 2018 Samsung Electronics Co., Ltd.
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -05005 Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
Krishnajinkada9e01a2018-08-31 20:01:30 +09006 ================================================================================
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-->
Chenfei Gao6ea2e1b2019-01-31 16:09:09 -050022<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Krishnajinkada9e01a2018-08-31 20:01:30 +090024 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <modelVersion>4.0.0</modelVersion>
26 <parent>
27 <groupId>org.onap.policy.api</groupId>
28 <artifactId>policy-api</artifactId>
29 <version>2.0.0-SNAPSHOT</version>
30 </parent>
31
32 <artifactId>main</artifactId>
33
34 <name>${project.artifactId}</name>
35 <description>The main module of Policy Api that handles startup, lifecycle management, and parameters.</description>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.onap.policy.common</groupId>
40 <artifactId>capabilities</artifactId>
41 <version>${policy.common.version}</version>
42 </dependency>
43 <dependency>
Krishnajinkada9e01a2018-08-31 20:01:30 +090044 <groupId>commons-cli</groupId>
45 <artifactId>commons-cli</artifactId>
46 </dependency>
47 <dependency>
48 <groupId>com.google.code.gson</groupId>
49 <artifactId>gson</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.onap.policy.common</groupId>
53 <artifactId>common-parameters</artifactId>
54 <version>${policy.common.version}</version>
55 </dependency>
Krishnajinkada9e01a2018-08-31 20:01:30 +090056 </dependencies>
57
58 <build>
59 <resources>
60 <!-- Output the version of the api service -->
61 <resource>
62 <directory>src/main/resources</directory>
63 <filtering>true</filtering>
64 <includes>
65 <include>**/version.txt</include>
66 </includes>
67 </resource>
68 <resource>
69 <directory>src/main/resources</directory>
70 <filtering>false</filtering>
71 <excludes>
72 <exclude>**/version.txt</exclude>
73 </excludes>
74 </resource>
75 </resources>
76 </build>
77
78</project>