ning.xi | bcb139f | 2019-04-03 16:10:03 +0800 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | simulators |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved. |
| 6 | Modifications Copyright (C) 2019 Nordix Foundation. |
| 7 | ================================================================================ |
| 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 |
| 11 | |
| 12 | http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | |
| 14 | 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 | --> |
| 21 | |
| 22 | <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"> |
| 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.onap.policy.models</groupId> |
| 27 | <artifactId>policy-models-interactions</artifactId> |
Pamela Dragosh | 4b43d97 | 2019-06-21 16:29:00 -0400 | [diff] [blame^] | 28 | <version>2.1.1-SNAPSHOT</version> |
ning.xi | bcb139f | 2019-04-03 16:10:03 +0800 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <groupId>org.onap.policy.models.policy-models-interactions</groupId> |
| 32 | <artifactId>simulators</artifactId> |
| 33 | |
| 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onap.policy.common</groupId> |
| 37 | <artifactId>policy-endpoints</artifactId> |
| 38 | <version>${policy.common.version}</version> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>junit</groupId> |
| 42 | <artifactId>junit</artifactId> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 47 | <artifactId>aai</artifactId> |
| 48 | <version>${project.version}</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 52 | <artifactId>so</artifactId> |
| 53 | <version>${project.version}</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 57 | <artifactId>vfc</artifactId> |
| 58 | <version>${project.version}</version> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>com.google.code.gson</groupId> |
| 63 | <artifactId>gson</artifactId> |
| 64 | <scope>provided</scope> |
| 65 | </dependency> |
Pamela Dragosh | 40ced02 | 2019-05-03 08:37:15 -0400 | [diff] [blame] | 66 | <dependency> |
| 67 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 68 | <artifactId>sdnc</artifactId> |
| 69 | <version>${project.version}</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.policy.models</groupId> |
| 73 | <artifactId>policy-models-decisions</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | </dependency> |
ning.xi | bcb139f | 2019-04-03 16:10:03 +0800 | [diff] [blame] | 76 | </dependencies> |
| 77 | </project> |