Charles Cole | 8d33801 | 2017-09-08 14:10:57 -0500 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | simulators |
| 4 | ================================================================================ |
Pamela Dragosh | acfe063 | 2018-08-28 09:57:31 -0400 | [diff] [blame] | 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
Charles Cole | 8d33801 | 2017-09-08 14:10:57 -0500 | [diff] [blame] | 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" |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 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 | |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.drools-applications.controlloop.common</groupId> |
| 27 | <artifactId>common</artifactId> |
liamfallon | 4cfda9c | 2018-06-05 16:41:35 +0100 | [diff] [blame] | 28 | <version>1.3.0-SNAPSHOT</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <artifactId>simulators</artifactId> |
| 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
mmis | e87b2f7 | 2018-07-23 12:22:07 +0100 | [diff] [blame] | 35 | <groupId>org.onap.policy.common</groupId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 36 | <artifactId>policy-endpoints</artifactId> |
| 37 | <version>${project.version}</version> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>junit</groupId> |
| 41 | <artifactId>junit</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 42 | <scope>test</scope> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 46 | <artifactId>aai</artifactId> |
| 47 | <version>${project.version}</version> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 51 | <artifactId>so</artifactId> |
| 52 | <version>${project.version}</version> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 56 | <artifactId>vfc</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | <scope>test</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.onap.policy.drools-pdp</groupId> |
| 62 | <artifactId>policy-management</artifactId> |
| 63 | <version>${project.version}</version> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>com.google.code.gson</groupId> |
| 68 | <artifactId>gson</artifactId> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 69 | <scope>provided</scope> |
| 70 | </dependency> |
Vidyashree Rama | b900718 | 2018-10-18 11:45:52 +0530 | [diff] [blame^] | 71 | <dependency> |
| 72 | <groupId>org.onap.policy.drools-applications.controlloop.common.model-impl</groupId> |
| 73 | <artifactId>sdnc</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | </dependency> |
liamfallon | def0f11 | 2018-02-13 11:29:56 +0000 | [diff] [blame] | 76 | </dependencies> |
Jorge Hernandez | 788954f | 2017-11-07 09:04:10 -0600 | [diff] [blame] | 77 | </project> |