ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (C) 2018 Wipro Limited Intellectual Property. All rights reserved. |
HOCKLA | c5475f1 | 2020-01-10 12:16:00 -0600 | [diff] [blame^] | 5 | Modifications Copyright (C) 2019-2020 Nordix Foundation. |
| 6 | Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 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.policy-models-interactions.model-actors</groupId> |
| 27 | <artifactId>model-actors</artifactId> |
HOCKLA | c5475f1 | 2020-01-10 12:16:00 -0600 | [diff] [blame^] | 28 | <version>2.2.1-SNAPSHOT</version> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 29 | </parent> |
| 30 | |
| 31 | <artifactId>actor.sdnr</artifactId> |
| 32 | |
| 33 | <dependencies> |
| 34 | <dependency> |
| 35 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
| 36 | <artifactId>actorServiceProvider</artifactId> |
| 37 | <version>${project.version}</version> |
| 38 | <scope>provided</scope> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 42 | <artifactId>sdnr</artifactId> |
| 43 | <version>${project.version}</version> |
| 44 | <scope>provided</scope> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 48 | <artifactId>events</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | <scope>provided</scope> |
| 51 | </dependency> |
| 52 | <dependency> |
| 53 | <groupId>com.google.code.gson</groupId> |
| 54 | <artifactId>gson</artifactId> |
| 55 | <scope>test</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>junit</groupId> |
| 59 | <artifactId>junit</artifactId> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
ning.xi | bcb139f | 2019-04-03 16:10:03 +0800 | [diff] [blame] | 63 | <groupId>org.onap.policy.models.policy-models-interactions</groupId> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 64 | <artifactId>simulators</artifactId> |
ning.xi | bcb139f | 2019-04-03 16:10:03 +0800 | [diff] [blame] | 65 | <version>${project.version}</version> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 66 | <scope>test</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.onap.policy.common</groupId> |
| 70 | <artifactId>policy-endpoints</artifactId> |
| 71 | <version>${policy.common.version}</version> |
| 72 | <scope>provided</scope> |
| 73 | </dependency> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 74 | </dependencies> |
| 75 | </project> |