blob: a94442375ac34faad148bd71633d519eb670f8fd [file] [log] [blame]
Pamela Dragoshb909b142019-03-09 11:48:44 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - XACML PDP
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 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>
liamfallonc7b9c9b2022-10-21 17:45:43 +010027 <version>2.8.0-SNAPSHOT</version>
Pamela Dragoshb909b142019-03-09 11:48:44 -050028 </parent>
29
Jim Hahn97be46a2020-09-29 11:16:14 -040030 <artifactId>xacml-guard</artifactId>
Pamela Dragoshb909b142019-03-09 11:48:44 -050031
32 <name>${project.artifactId}</name>
33 <description>This modules contain an application that implements onap.Guard policy-types for XACML PDP.</description>
34
35 <dependencies>
36 <dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -050037 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
38 <artifactId>common</artifactId>
39 <version>${project.version}</version>
40 </dependency>
Pamela Dragoshd2daf7e2019-03-27 06:40:18 -040041 <dependency>
42 <groupId>org.eclipse.persistence</groupId>
43 <artifactId>eclipselink</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>com.h2database</groupId>
47 <artifactId>h2</artifactId>
48 <scope>test</scope>
49 </dependency>
Ali Hockla6f145252019-10-01 18:42:04 -050050 <dependency>
51 <groupId>org.onap.policy.xacml-pdp</groupId>
52 <artifactId>xacml-test</artifactId>
53 <version>${project.version}</version>
54 <scope>test</scope>
55 </dependency>
Pamela Dragoshd2daf7e2019-03-27 06:40:18 -040056 </dependencies>
Pamela Dragoshb909b142019-03-09 11:48:44 -050057
58</project>