blob: d7552fcb324497e8e2ad0776e7b1bfda02e1c9f4 [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-->
liamfallon5b7f1072019-09-05 22:25:55 +000022<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Krishnajinkada9e01a2018-08-31 20:01:30 +090023 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.api</groupId>
27 <artifactId>policy-api</artifactId>
Jim Hahneeb2aa12019-09-10 09:57:24 -040028 <version>2.2.0-SNAPSHOT</version>
Krishnajinkada9e01a2018-08-31 20:01:30 +090029 </parent>
30
31 <artifactId>main</artifactId>
32
33 <name>${project.artifactId}</name>
34 <description>The main module of Policy Api that handles startup, lifecycle management, and parameters.</description>
35
36 <dependencies>
37 <dependency>
38 <groupId>org.onap.policy.common</groupId>
39 <artifactId>capabilities</artifactId>
40 <version>${policy.common.version}</version>
41 </dependency>
42 <dependency>
Krishnajinkada9e01a2018-08-31 20:01:30 +090043 <groupId>commons-cli</groupId>
44 <artifactId>commons-cli</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>com.google.code.gson</groupId>
48 <artifactId>gson</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.onap.policy.common</groupId>
52 <artifactId>common-parameters</artifactId>
53 <version>${policy.common.version}</version>
54 </dependency>
Chenfei Gao0c117e62019-02-18 16:28:54 -050055 <dependency>
56 <groupId>org.onap.policy.models</groupId>
Chenfei Gao851984a2019-03-06 18:54:25 -050057 <artifactId>policy-models-tosca</artifactId>
Chenfei Gao0c117e62019-02-18 16:28:54 -050058 <version>${policy.models.version}</version>
59 </dependency>
60 <dependency>
Chenfei Gao61b66232019-03-15 11:28:16 -040061 <groupId>org.onap.policy.models</groupId>
62 <artifactId>policy-models-provider</artifactId>
63 <version>${policy.models.version}</version>
64 </dependency>
65 <dependency>
liamfallon5b7f1072019-09-05 22:25:55 +000066 <groupId>org.onap.policy.models</groupId>
67 <artifactId>policy-models-examples</artifactId>
68 <version>${policy.models.version}</version>
69 </dependency>
70 <dependency>
Chenfei Gao20390c62019-09-16 22:20:34 -040071 <groupId>org.onap.policy.common</groupId>
72 <artifactId>utils</artifactId>
73 <version>${policy.common.version}</version>
74 </dependency>
75 <dependency>
Chenfei Gao0c117e62019-02-18 16:28:54 -050076 <groupId>org.projectlombok</groupId>
77 <artifactId>lombok</artifactId>
Chenfei Gao0c117e62019-02-18 16:28:54 -050078 <scope>provided</scope>
79 </dependency>
Chenfei Gaoe156fb82019-04-02 08:55:17 -040080 <dependency>
81 <groupId>com.h2database</groupId>
82 <artifactId>h2</artifactId>
83 <scope>test</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.mariadb.jdbc</groupId>
87 <artifactId>mariadb-java-client</artifactId>
88 </dependency>
Chenfei Gao74d69a22019-04-04 21:47:01 -040089 <dependency>
90 <groupId>org.assertj</groupId>
91 <artifactId>assertj-core</artifactId>
92 <scope>test</scope>
93 </dependency>
ramverma2ab8ff12019-06-26 15:00:39 +000094 <dependency>
95 <groupId>org.onap.policy.common</groupId>
96 <artifactId>utils-test</artifactId>
97 <version>${policy.common.version}</version>
98 <scope>test</scope>
99 </dependency>
Krishnajinkada9e01a2018-08-31 20:01:30 +0900100 </dependencies>
101
102 <build>
103 <resources>
104 <!-- Output the version of the api service -->
105 <resource>
106 <directory>src/main/resources</directory>
107 <filtering>true</filtering>
108 <includes>
109 <include>**/version.txt</include>
110 </includes>
111 </resource>
112 <resource>
113 <directory>src/main/resources</directory>
114 <filtering>false</filtering>
115 <excludes>
116 <exclude>**/version.txt</exclude>
117 </excludes>
118 </resource>
119 </resources>
120 </build>
121
122</project>