blob: 8bc317e437201711af8364cd7ce38f8ba64c8cc4 [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.
liamfallon1e82ff42023-01-31 10:43:09 +00006 Modifications Copyright (C) 2023 Nordix Foundation.
Pamela Dragoshf8d2c212020-08-24 15:50:31 -04007 ================================================================================
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.applications</groupId>
27 <artifactId>applications</artifactId>
liamfallonf1aed942022-12-15 16:19:46 +000028 <version>2.8.1-SNAPSHOT</version>
Pamela Dragoshf8d2c212020-08-24 15:50:31 -040029 </parent>
30
Jim Hahn97be46a2020-09-29 11:16:14 -040031 <artifactId>xacml-match</artifactId>
Pamela Dragoshf8d2c212020-08-24 15:50:31 -040032
33 <name>${project.artifactId}</name>
34 <description>This modules contains the Match applications.</description>
35
36 <dependencies>
37 <dependency>
liamfallon1e82ff42023-01-31 10:43:09 +000038 <groupId>org.mockito</groupId>
39 <artifactId>mockito-core</artifactId>
Pamela Dragoshf8d2c212020-08-24 15:50:31 -040040 <scope>test</scope>
41 </dependency>
42 <dependency>
43 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
44 <artifactId>common</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47 <dependency>
48 <groupId>org.onap.policy.xacml-pdp</groupId>
49 <artifactId>xacml-test</artifactId>
50 <version>${project.version}</version>
51 <scope>test</scope>
52 </dependency>
53 </dependencies>
54
55</project>