blob: 80083643c6d94a4b43a50f4d10d544f3c6221644 [file] [log] [blame]
Pamela Dragosh2c847e02019-03-22 14:12:52 -04001<!--
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>
Jim Hahn88a247e2019-09-10 11:14:09 -040027 <version>2.2.0-SNAPSHOT</version>
Pamela Dragosh2c847e02019-03-22 14:12:52 -040028 </parent>
29
30 <artifactId>optimization</artifactId>
31
32 <name>${project.artifactId}</name>
33 <description>This modules contains applications that implement policy-types for XACML PDP.</description>
34
35 <dependencies>
36 <dependency>
Pamela Dragosh85b51782019-08-30 15:21:05 -040037 <groupId>org.powermock</groupId>
38 <artifactId>powermock-api-mockito</artifactId>
39 <scope>test</scope>
40 </dependency>
41 <dependency>
Pamela Dragosh2c847e02019-03-22 14:12:52 -040042 <groupId>org.onap.policy.xacml-pdp.applications</groupId>
43 <artifactId>common</artifactId>
44 <version>${project.version}</version>
45 </dependency>
Ali Hockla6f145252019-10-01 18:42:04 -050046 <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>
Pamela Dragosh2c847e02019-03-22 14:12:52 -040052 </dependencies>
53
54</project>