blob: e7d01ddd9c7d6bff5b8f867240520888ba4636c5 [file] [log] [blame]
Pamela Dragoshb909b142019-03-09 11:48:44 -05001<!--
2 ============LICENSE_START=======================================================
3 ONAP
4 ================================================================================
Pamela Dragoshfabdecc2021-01-19 16:37:48 -05005 Copyright (C) 2019-2021 AT&T Intellectual Property. All rights reserved.
Pamela Dragoshb909b142019-03-09 11:48:44 -05006 ================================================================================
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
Pamela Dragoshb0a27ab2020-03-10 07:54:05 -040010
Pamela Dragoshb909b142019-03-09 11:48:44 -050011 http://www.apache.org/licenses/LICENSE-2.0
Pamela Dragoshb0a27ab2020-03-10 07:54:05 -040012
Pamela Dragoshb909b142019-03-09 11:48:44 -050013 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>
liamfallond0c47582022-03-11 18:03:06 +000029 <version>2.6.2-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>
HOCKLA82b162b2020-01-14 11:39:47 -060042 <artifactId>powermock-api-mockito2</artifactId>
Jim Hahn77d4dd12019-07-22 10:57:57 -040043 <scope>test</scope>
44 </dependency>
45 <dependency>
HOCKLA82b162b2020-01-14 11:39:47 -060046 <groupId>javax.xml.bind</groupId>
47 <artifactId>jaxb-api</artifactId>
48 <version>${version.javax.bind}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.glassfish.jaxb</groupId>
52 <artifactId>jaxb-runtime</artifactId>
53 <version>${version.javax.bind}</version>
54 </dependency>
55 <dependency>
Pamela Dragoshd2daf7e2019-03-27 06:40:18 -040056 <groupId>com.h2database</groupId>
57 <artifactId>h2</artifactId>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
Jim Hahn3c703e22020-05-29 11:43:49 -040061 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
62 <artifactId>guard</artifactId>
63 <version>${policy.models.version}</version>
64 </dependency>
65 <dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -050066 <groupId>org.onap.policy.common</groupId>
Jim Hahn98873e82019-08-28 15:20:18 -040067 <artifactId>policy-endpoints</artifactId>
68 <version>${policy.common.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.onap.policy.common</groupId>
Jim Hahn1df1c6a2019-09-12 16:05:18 -040072 <artifactId>utils</artifactId>
73 <version>${policy.common.version}</version>
74 </dependency>
75 <dependency>
76 <groupId>org.onap.policy.common</groupId>
Pamela Dragoshb909b142019-03-09 11:48:44 -050077 <artifactId>utils-test</artifactId>
78 <version>${policy.common.version}</version>
Ali Hockla6f145252019-10-01 18:42:04 -050079 <scope>test</scope>
Pamela Dragoshb909b142019-03-09 11:48:44 -050080 </dependency>
Pamela Dragoshd5c3b362019-03-21 19:45:45 -040081 <dependency>
82 <groupId>com.att.research.xacml</groupId>
83 <artifactId>xacml-pdp</artifactId>
Pamela Dragoshfabdecc2021-01-19 16:37:48 -050084 <version>3.0</version>
Pamela Dragoshd5c3b362019-03-21 19:45:45 -040085 </dependency>
Pamela Dragoshb909b142019-03-09 11:48:44 -050086 </dependencies>
87</project>