blob: 924de88be5303645917810cbc0742eb433b71c1b [file] [log] [blame]
Charles Cole8d338012017-09-08 14:10:57 -05001<!--
2 ============LICENSE_START=======================================================
3 simulators
4 ================================================================================
Pamela Dragoshacfe0632018-08-28 09:57:31 -04005 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
shaoqiue55d2562019-04-02 12:33:04 +00006 Modifications Copyright (C) 2019 Nordix Foundation.
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -05007 Modifications Copyright (C) 2020 Bell Canada.
Charles Cole8d338012017-09-08 14:10:57 -05008 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
21 -->
22
liamfallonfd6a4f32018-10-31 16:54:18 +000023<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
liamfallondef0f112018-02-13 11:29:56 +000024 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
Ram Krishna Vermad0cbee12020-02-07 13:03:27 -050028 <artifactId>drools-applications-common</artifactId>
Pamela Dragoshc9920132019-05-23 16:32:55 -040029 <version>1.4.2-SNAPSHOT</version>
liamfallondef0f112018-02-13 11:29:56 +000030 </parent>
31
32 <artifactId>simulators</artifactId>
33
34 <dependencies>
35 <dependency>
mmise87b2f72018-07-23 12:22:07 +010036 <groupId>org.onap.policy.common</groupId>
liamfallondef0f112018-02-13 11:29:56 +000037 <artifactId>policy-endpoints</artifactId>
ramvermae2b3a9c2018-10-25 11:59:09 +010038 <version>${version.policy.common}</version>
liamfallondef0f112018-02-13 11:29:56 +000039 </dependency>
40 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +000041 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
liamfallondef0f112018-02-13 11:29:56 +000042 <artifactId>aai</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +000043 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +000044 </dependency>
45 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +000046 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
liamfallondef0f112018-02-13 11:29:56 +000047 <artifactId>so</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +000048 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +000049 </dependency>
50 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +000051 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
liamfallondef0f112018-02-13 11:29:56 +000052 <artifactId>vfc</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +000053 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +000054 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>org.onap.policy.drools-pdp</groupId>
58 <artifactId>policy-management</artifactId>
ramvermae2b3a9c2018-10-25 11:59:09 +010059 <version>${version.policy.drools-pdp}</version>
liamfallondef0f112018-02-13 11:29:56 +000060 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>com.google.code.gson</groupId>
64 <artifactId>gson</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000065 <scope>provided</scope>
66 </dependency>
Vidyashree Ramab9007182018-10-18 11:45:52 +053067 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +000068 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
Vidyashree Ramab9007182018-10-18 11:45:52 +053069 <artifactId>sdnc</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +000070 <version>${policy.models.version}</version>
Vidyashree Ramab9007182018-10-18 11:45:52 +053071 </dependency>
liamfallondef0f112018-02-13 11:29:56 +000072 </dependencies>
Jorge Hernandez788954f2017-11-07 09:04:10 -060073</project>