blob: cfc2bee92230bae2d15808540260f48a6403f11c [file] [log] [blame]
ramverma07b7ba02019-01-31 13:09:00 +00001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2019 Nordix Foundation.
HOCKLA9df17182020-01-14 11:06:29 -06004 Modifications Copyright (C) 2019-2020 AT&T Intellectual Property.
Ram Krishna Verma9a96d622020-02-05 16:29:58 -05005 Modifications Copyright (C) 2020 Bell Canada.
ramverma07b7ba02019-01-31 13:09:00 +00006 ================================================================================
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-->
22
23<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 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.pap</groupId>
28 <artifactId>policy-pap</artifactId>
jrh3ad55e1e2019-09-10 11:04:50 -040029 <version>2.2.0-SNAPSHOT</version>
ramverma07b7ba02019-01-31 13:09:00 +000030 </parent>
31
Ram Krishna Verma9a96d622020-02-05 16:29:58 -050032 <artifactId>pap-main</artifactId>
ramverma07b7ba02019-01-31 13:09:00 +000033
34 <name>${project.artifactId}</name>
35 <description>The main module of Policy Administration Backend that handles startup, lifecycle management, and parameters.</description>
36
37 <dependencies>
38 <dependency>
39 <groupId>commons-cli</groupId>
40 <artifactId>commons-cli</artifactId>
41 </dependency>
42 <dependency>
ramverma07b7ba02019-01-31 13:09:00 +000043 <groupId>org.onap.policy.common</groupId>
44 <artifactId>common-parameters</artifactId>
45 <version>${policy.common.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.onap.policy.common</groupId>
49 <artifactId>utils</artifactId>
50 <version>${policy.common.version}</version>
51 </dependency>
ramverma370c2272019-02-05 10:28:22 +000052 <dependency>
53 <groupId>org.onap.policy.common</groupId>
54 <artifactId>policy-endpoints</artifactId>
55 <version>${policy.common.version}</version>
56 </dependency>
ramverma74ead722019-02-07 21:52:23 +000057 <dependency>
jh735892eabbc2019-02-22 16:41:54 -050058 <groupId>org.onap.policy.common</groupId>
59 <artifactId>gson</artifactId>
60 <version>${policy.common.version}</version>
61 </dependency>
62 <dependency>
Jim Hahn4a3cfdf2019-03-12 11:53:22 -040063 <groupId>org.onap.policy.models</groupId>
Jim Hahn602572e2019-03-24 08:13:58 -040064 <artifactId>policy-models-pap</artifactId>
65 <version>${policy.models.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>org.onap.policy.models</groupId>
Jim Hahn00509262019-04-07 10:34:45 -040069 <artifactId>policy-models-pdp</artifactId>
Jim Hahn602572e2019-03-24 08:13:58 -040070 <version>${policy.models.version}</version>
71 </dependency>
72 <dependency>
73 <groupId>org.onap.policy.models</groupId>
74 <artifactId>policy-models-provider</artifactId>
Jim Hahn4a3cfdf2019-03-12 11:53:22 -040075 <version>${policy.models.version}</version>
76 </dependency>
77 <dependency>
ramverma74ead722019-02-07 21:52:23 +000078 <groupId>org.projectlombok</groupId>
79 <artifactId>lombok</artifactId>
ramverma74ead722019-02-07 21:52:23 +000080 <scope>provided</scope>
81 </dependency>
Jim Hahnb0208432019-02-26 14:09:35 -050082 <dependency>
83 <groupId>org.onap.policy.common</groupId>
84 <artifactId>utils-test</artifactId>
85 <version>${policy.common.version}</version>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.powermock</groupId>
HOCKLA9df17182020-01-14 11:06:29 -060090 <artifactId>powermock-api-mockito2</artifactId>
Jim Hahnb0208432019-02-26 14:09:35 -050091 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.assertj</groupId>
95 <artifactId>assertj-core</artifactId>
96 <scope>test</scope>
97 </dependency>
ramverma63d40cd2019-04-09 16:49:43 +000098 <dependency>
99 <groupId>com.h2database</groupId>
100 <artifactId>h2</artifactId>
101 <scope>test</scope>
102 </dependency>
ramverma07b7ba02019-01-31 13:09:00 +0000103 </dependencies>
104
105 <build>
106 <resources>
107 <!-- Output the version of the pap service -->
108 <resource>
109 <directory>src/main/resources</directory>
110 <filtering>true</filtering>
111 <includes>
112 <include>**/version.txt</include>
113 </includes>
114 </resource>
115 <resource>
116 <directory>src/main/resources</directory>
117 <filtering>false</filtering>
118 <excludes>
119 <exclude>**/version.txt</exclude>
120 </excludes>
121 </resource>
122 </resources>
123 </build>
124</project>