blob: 037691f60134c2215ec5d5b3398d3915faf34aa7 [file] [log] [blame]
Ali Hockla6f145252019-10-01 18:42:04 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP
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
22 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
23 xmlns="http://maven.apache.org/POM/4.0.0"
24 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
25 <modelVersion>4.0.0</modelVersion>
26 <parent>
27 <groupId>org.onap.policy.xacml-pdp</groupId>
28 <artifactId>policy-xacml-pdp</artifactId>
Pamela Dragosh54aec032021-03-11 15:36:39 -050029 <version>2.5.0-SNAPSHOT</version>
Ali Hockla6f145252019-10-01 18:42:04 -050030 <relativePath>..</relativePath>
31 </parent>
32
33 <artifactId>xacml-test</artifactId>
34
Pamela Dragosha0ad29c2020-03-08 10:41:26 -040035 <properties>
36 <!-- There is code to support JUnit testing in this sub-module. -->
37 <sonar.skip>true</sonar.skip>
38 </properties>
39
Ali Hockla6f145252019-10-01 18:42:04 -050040 <dependencies>
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.common</groupId>
48 <artifactId>utils</artifactId>
49 <version>${policy.common.version}</version>
50 </dependency>
51 </dependencies>
52</project>