blob: 69e0c37346f810603b4fbb9fa5d762e658936a16 [file] [log] [blame]
Pamela Dragosh4ff3b262019-12-08 17:44:31 -05001<!--
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.
Pamela Dragosh4ff3b262019-12-08 17:44:31 -05006 ================================================================================
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.applications</groupId>
26 <artifactId>applications</artifactId>
liamfallon09490372022-05-03 17:22:06 +010027 <version>2.7.0-SNAPSHOT</version>
Pamela Dragosh4ff3b262019-12-08 17:44:31 -050028 </parent>
29
Jim Hahn97be46a2020-09-29 11:16:14 -040030 <artifactId>xacml-naming</artifactId>
Pamela Dragosh4ff3b262019-12-08 17:44:31 -050031
32 <name>${project.artifactId}</name>
33 <description>This modules contains the SDNC naming applications.</description>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.powermock</groupId>
HOCKLA82b162b2020-01-14 11:39:47 -060038 <artifactId>powermock-api-mockito2</artifactId>
Pamela Dragosh4ff3b262019-12-08 17:44:31 -050039 <scope>test</scope>
40 </dependency>
41 <dependency>
42 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
43 <artifactId>common</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>org.onap.policy.xacml-pdp</groupId>
48 <artifactId>xacml-test</artifactId>
49 <version>${project.version}</version>
50 <scope>test</scope>
51 </dependency>
52 </dependencies>
53
54</project>