Bump pap to 2.4.2-SNAPSHOT
[policy/pap.git] / main / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3    Copyright (C) 2019 Nordix Foundation.
4    Modifications Copyright (C) 2019-2020 AT&T Intellectual Property.
5    Modifications Copyright (C) 2020 Bell Canada.
6   ================================================================================
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>
29         <version>2.4.2-SNAPSHOT</version>
30     </parent>
31
32     <artifactId>pap-main</artifactId>
33
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>
43             <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>
52         <dependency>
53             <groupId>org.onap.policy.common</groupId>
54             <artifactId>policy-endpoints</artifactId>
55             <version>${policy.common.version}</version>
56         </dependency>
57         <dependency>
58             <groupId>org.onap.policy.common</groupId>
59             <artifactId>gson</artifactId>
60             <version>${policy.common.version}</version>
61         </dependency>
62         <dependency>
63             <groupId>org.onap.policy.models</groupId>
64             <artifactId>policy-models-pap</artifactId>
65             <version>${policy.models.version}</version>
66         </dependency>
67         <dependency>
68             <groupId>org.onap.policy.models</groupId>
69             <artifactId>policy-models-pdp</artifactId>
70             <version>${policy.models.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>org.onap.policy.models</groupId>
74             <artifactId>policy-models-provider</artifactId>
75             <version>${policy.models.version}</version>
76         </dependency>
77         <dependency>
78             <groupId>org.projectlombok</groupId>
79             <artifactId>lombok</artifactId>
80             <scope>provided</scope>
81         </dependency>
82         <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>
90             <artifactId>powermock-api-mockito2</artifactId>
91             <scope>test</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.assertj</groupId>
95             <artifactId>assertj-core</artifactId>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>com.h2database</groupId>
100             <artifactId>h2</artifactId>
101             <scope>test</scope>
102         </dependency>
103     </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>