blob: ae962b3feaa5fbcb3ed5f8ab78e4ed1443d9db68 [file] [log] [blame]
Charles Colec8e0ec62017-12-14 08:59:26 -06001<!--
2 ============LICENSE_START=======================================================
3 ONAP Policy Engine - Drools PDP
4 ================================================================================
Hockla, Ali (ah999m)956a7b52020-01-13 14:11:46 -06005 Copyright (C) 2017, 2020 AT&T Intellectual Property. All rights reserved.
liamfalloneb70ba32019-11-01 12:01:13 +00006 Modifications Copyright (C) 2019 Nordix Foundation.
Charles Colec8e0ec62017-12-14 08:59:26 -06007 ================================================================================
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
liamfalloneb70ba32019-11-01 12:01:13 +000011
Charles Colec8e0ec62017-12-14 08:59:26 -060012 http://www.apache.org/licenses/LICENSE-2.0
liamfalloneb70ba32019-11-01 12:01:13 +000013
Charles Colec8e0ec62017-12-14 08:59:26 -060014 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 -->
Charles Colec8e0ec62017-12-14 08:59:26 -060021
liamfalloneb70ba32019-11-01 12:01:13 +000022<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">
liamfallon0237fe02019-05-16 09:39:24 +000024
liamfalloneb70ba32019-11-01 12:01:13 +000025 <modelVersion>4.0.0</modelVersion>
liamfallon0237fe02019-05-16 09:39:24 +000026
liamfalloneb70ba32019-11-01 12:01:13 +000027 <parent>
28 <groupId>org.onap.policy.drools-pdp</groupId>
29 <artifactId>drools-pdp</artifactId>
30 <version>1.6.0-SNAPSHOT</version>
31 </parent>
Charles Colec8e0ec62017-12-14 08:59:26 -060032
liamfalloneb70ba32019-11-01 12:01:13 +000033 <artifactId>feature-simulators</artifactId>
Charles Colec8e0ec62017-12-14 08:59:26 -060034
liamfalloneb70ba32019-11-01 12:01:13 +000035 <name>feature-simulators</name>
liamfallon0237fe02019-05-16 09:39:24 +000036
liamfalloneb70ba32019-11-01 12:01:13 +000037 <dependencies>
38 <dependency>
39 <groupId>junit</groupId>
40 <artifactId>junit</artifactId>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>org.mockito</groupId>
45 <artifactId>mockito-core</artifactId>
liamfalloneb70ba32019-11-01 12:01:13 +000046 <scope>test</scope>
47 </dependency>
48 <dependency>
49 <groupId>org.onap.policy.common</groupId>
50 <artifactId>policy-endpoints</artifactId>
51 <version>${policy.common.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.onap.policy.drools-pdp</groupId>
55 <artifactId>policy-utils</artifactId>
56 <version>${project.version}</version>
57 </dependency>
liamfalloneb70ba32019-11-01 12:01:13 +000058
59 </dependencies>
Charles Colec8e0ec62017-12-14 08:59:26 -060060</project>