blob: ecb40482a1dc963e79c37bd8bfdd9a5fb823e48c [file] [log] [blame]
Pamela Dragoshf8d2c212020-08-24 15:50:31 -04001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - XACML PDP
4 ================================================================================
5 Copyright (C) 2020 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.applications</groupId>
26 <artifactId>applications</artifactId>
Pamela Dragoshc5f3b562020-10-07 16:36:52 -040027 <version>2.3.3-SNAPSHOT</version>
Pamela Dragoshf8d2c212020-08-24 15:50:31 -040028 </parent>
29
Jim Hahn97be46a2020-09-29 11:16:14 -040030 <artifactId>xacml-match</artifactId>
Pamela Dragoshf8d2c212020-08-24 15:50:31 -040031
32 <name>${project.artifactId}</name>
33 <description>This modules contains the Match applications.</description>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.powermock</groupId>
38 <artifactId>powermock-api-mockito2</artifactId>
39 <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>