blob: 32d0a436c26dc2448b5a3804ad84391d98797385 [file] [log] [blame]
Michael Mokryf239a662019-01-31 13:16:55 -06001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - XACML PDP
4 ================================================================================
HOCKLA82b162b2020-01-14 11:39:47 -06005 Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
Ram Krishna Vermaec3592f2020-02-05 16:32:11 -05006 Modifications Copyright (C) 2020 Bell Canada.
Michael Mokryf239a662019-01-31 13:16:55 -06007 ================================================================================
8 Licensed under the Apache License, Version 2.0 (the "License");
9 you may not use this file except in compliance with the License.
10 You may obtain a copy of the License at
11
12 http://www.apache.org/licenses/LICENSE-2.0
13
14 Unless required by applicable law or agreed to in writing, software
15 distributed under the License is distributed on an "AS IS" BASIS,
16 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 See the License for the specific language governing permissions and
18 limitations under the License.
19 ============LICENSE_END=========================================================
20 -->
21
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 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.xacml-pdp</groupId>
27 <artifactId>policy-xacml-pdp</artifactId>
Jim Hahn88a247e2019-09-10 11:14:09 -040028 <version>2.2.0-SNAPSHOT</version>
Michael Mokryf239a662019-01-31 13:16:55 -060029 </parent>
30
Ram Krishna Vermaec3592f2020-02-05 16:32:11 -050031 <artifactId>xacml-main</artifactId>
Michael Mokryf239a662019-01-31 13:16:55 -060032
33 <name>${project.artifactId}</name>
34 <description>The main module of Policy PDP-X 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>
43 <groupId>org.onap.policy.common</groupId>
44 <artifactId>policy-endpoints</artifactId>
45 <version>${policy.common.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>commons-cli</groupId>
49 <artifactId>commons-cli</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>com.google.code.gson</groupId>
53 <artifactId>gson</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.onap.policy.common</groupId>
57 <artifactId>common-parameters</artifactId>
58 <version>${policy.common.version}</version>
59 </dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -050060 <dependency>
61 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
62 <artifactId>common</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 <dependency>
Ali Hockla6f145252019-10-01 18:42:04 -050066 <groupId>org.onap.policy.common</groupId>
67 <artifactId>utils-test</artifactId>
68 <version>${policy.common.version}</version>
69 <scope>test</scope>
70 </dependency>
71 <dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -050072 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
73 <artifactId>monitoring</artifactId>
74 <version>${project.version}</version>
75 </dependency>
Pamela Dragosh59c38b62019-03-15 14:30:00 -040076 <dependency>
77 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
78 <artifactId>guard</artifactId>
79 <version>${project.version}</version>
80 </dependency>
Pamela Dragosh2c847e02019-03-22 14:12:52 -040081 <dependency>
82 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
83 <artifactId>optimization</artifactId>
84 <version>${project.version}</version>
85 </dependency>
Michael Mokry5dd6d162019-04-02 07:33:28 -050086 <dependency>
Pamela Dragosh4ff3b262019-12-08 17:44:31 -050087 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
88 <artifactId>naming</artifactId>
89 <version>${project.version}</version>
90 </dependency>
91 <dependency>
Chenfei Gaobdef9f52020-02-28 14:45:48 -050092 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
93 <artifactId>native</artifactId>
94 <version>${project.version}</version>
95 </dependency>
96 <dependency>
Michael Mokry5dd6d162019-04-02 07:33:28 -050097 <groupId>org.onap.policy.models</groupId>
98 <artifactId>policy-models-pdp</artifactId>
99 <version>${policy.models.version}</version>
100 </dependency>
jh735805045cd2019-04-25 20:15:28 -0400101 <dependency>
HOCKLA9ff68b12019-10-14 14:25:29 -0500102 <groupId>org.onap.policy.xacml-pdp</groupId>
103 <artifactId>xacml-test</artifactId>
104 <version>${project.version}</version>
105 <scope>test</scope>
106 </dependency>
107 <dependency>
jh735805045cd2019-04-25 20:15:28 -0400108 <groupId>org.powermock</groupId>
HOCKLA82b162b2020-01-14 11:39:47 -0600109 <artifactId>powermock-api-mockito2</artifactId>
jh735805045cd2019-04-25 20:15:28 -0400110 <scope>test</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.assertj</groupId>
114 <artifactId>assertj-core</artifactId>
115 <scope>test</scope>
116 </dependency>
Michael Mokryf239a662019-01-31 13:16:55 -0600117 </dependencies>
118
119 <build>
120 <resources>
121 <!-- Output the version of the pdpx service -->
122 <resource>
123 <directory>src/main/resources</directory>
124 <filtering>true</filtering>
125 <includes>
126 <include>**/version.txt</include>
127 </includes>
128 </resource>
129 <resource>
130 <directory>src/main/resources</directory>
131 <filtering>false</filtering>
132 <excludes>
133 <exclude>**/version.txt</exclude>
134 </excludes>
135 </resource>
136 </resources>
137 </build>
138
139</project>