blob: 5842e0450e910a7ac4661db7a23fa5b60ee36f1b [file] [log] [blame]
Pamela Dragoshb909b142019-03-09 11:48:44 -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.applications</groupId>
28 <artifactId>applications</artifactId>
jhh59dce2f2020-05-28 17:12:36 -050029 <version>2.1.4-SNAPSHOT</version>
Pamela Dragoshb909b142019-03-09 11:48:44 -050030 </parent>
31
32 <artifactId>common</artifactId>
33
34 <dependencies>
35 <dependency>
36 <groupId>junit</groupId>
37 <artifactId>junit</artifactId>
38 <scope>test</scope>
39 </dependency>
40 <dependency>
Jim Hahn77d4dd12019-07-22 10:57:57 -040041 <groupId>org.powermock</groupId>
42 <artifactId>powermock-api-mockito</artifactId>
43 <scope>test</scope>
44 </dependency>
45 <dependency>
Pamela Dragoshd2daf7e2019-03-27 06:40:18 -040046 <groupId>com.h2database</groupId>
47 <artifactId>h2</artifactId>
48 <scope>test</scope>
49 </dependency>
50 <dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -050051 <groupId>org.onap.policy.common</groupId>
Jim Hahn98873e82019-08-28 15:20:18 -040052 <artifactId>policy-endpoints</artifactId>
53 <version>${policy.common.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.onap.policy.common</groupId>
Pamela Dragoshb909b142019-03-09 11:48:44 -050057 <artifactId>utils-test</artifactId>
58 <version>${policy.common.version}</version>
59 </dependency>
Pamela Dragoshd5c3b362019-03-21 19:45:45 -040060 <dependency>
61 <groupId>com.att.research.xacml</groupId>
62 <artifactId>xacml-pdp</artifactId>
Pamela Dragosh2c847e02019-03-22 14:12:52 -040063 <version>2.0.1</version>
Pamela Dragoshd5c3b362019-03-21 19:45:45 -040064 </dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -050065 </dependencies>
66</project>