bump poms to 2.1.4-SNAPSHOT
[policy/xacml-pdp.git] / main / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine - XACML PDP
4   ================================================================================
5   Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
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   ============LICENSE_END=========================================================
19   -->
20
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <groupId>org.onap.policy.xacml-pdp</groupId>
26         <artifactId>policy-xacml-pdp</artifactId>
27         <version>2.1.4-SNAPSHOT</version>
28     </parent>
29
30     <artifactId>main</artifactId>
31
32     <name>${project.artifactId}</name>
33     <description>The main module of Policy PDP-X that handles startup, lifecycle management, and parameters.</description>
34
35     <dependencies>
36         <dependency>
37             <groupId>org.onap.policy.common</groupId>
38             <artifactId>capabilities</artifactId>
39             <version>${policy.common.version}</version>
40         </dependency>
41         <dependency>
42             <groupId>org.onap.policy.common</groupId>
43             <artifactId>policy-endpoints</artifactId>
44             <version>${policy.common.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>commons-cli</groupId>
48             <artifactId>commons-cli</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>com.google.code.gson</groupId>
52             <artifactId>gson</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.onap.policy.common</groupId>
56             <artifactId>common-parameters</artifactId>
57             <version>${policy.common.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
61             <artifactId>common</artifactId>
62             <version>${project.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
66             <artifactId>monitoring</artifactId>
67             <version>${project.version}</version>
68         </dependency>
69         <dependency>
70             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
71             <artifactId>guard</artifactId>
72             <version>${project.version}</version>
73         </dependency>
74         <dependency>
75             <groupId>org.onap.policy.xacml-pdp.applications</groupId>
76             <artifactId>optimization</artifactId>
77             <version>${project.version}</version>
78         </dependency>
79         <dependency>
80             <groupId>org.onap.policy.models</groupId>
81             <artifactId>policy-models-pdp</artifactId>
82             <version>${policy.models.version}</version>
83         </dependency>
84         <dependency>
85             <groupId>org.powermock</groupId>
86             <artifactId>powermock-api-mockito</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.assertj</groupId>
91             <artifactId>assertj-core</artifactId>
92             <scope>test</scope>
93         </dependency>
94     </dependencies>
95
96     <build>
97         <resources>
98             <!-- Output the version of the pdpx service -->
99             <resource>
100                 <directory>src/main/resources</directory>
101                 <filtering>true</filtering>
102                 <includes>
103                     <include>**/version.txt</include>
104                 </includes>
105             </resource>
106             <resource>
107                 <directory>src/main/resources</directory>
108                 <filtering>false</filtering>
109                 <excludes>
110                     <exclude>**/version.txt</exclude>
111                 </excludes>
112             </resource>
113         </resources>
114     </build>
115
116 </project>