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. |
Pamela Dragosh | d0ba41b | 2020-02-21 14:57:50 -0500 | [diff] [blame^] | 6 | Modifications 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 | --> |
Pamela Dragosh | d0ba41b | 2020-02-21 14:57:50 -0500 | [diff] [blame^] | 21 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 22 | 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"> |
| 24 | <modelVersion>4.0.0</modelVersion> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 25 | |
Pamela Dragosh | d0ba41b | 2020-02-21 14:57:50 -0500 | [diff] [blame^] | 26 | <parent> |
| 27 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
| 28 | <artifactId>model-actors</artifactId> |
| 29 | <version>2.2.1-SNAPSHOT</version> |
| 30 | </parent> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 31 | |
Pamela Dragosh | d0ba41b | 2020-02-21 14:57:50 -0500 | [diff] [blame^] | 32 | <artifactId>actor.sdnr</artifactId> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 33 | |
Pamela Dragosh | d0ba41b | 2020-02-21 14:57:50 -0500 | [diff] [blame^] | 34 | <dependencies> |
| 35 | <dependency> |
| 36 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
| 37 | <artifactId>actorServiceProvider</artifactId> |
| 38 | <version>${project.version}</version> |
| 39 | <scope>provided</scope> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 43 | <artifactId>sdnr</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | <scope>provided</scope> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 49 | <artifactId>events</artifactId> |
| 50 | <version>${project.version}</version> |
| 51 | <scope>provided</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>com.google.code.gson</groupId> |
| 55 | <artifactId>gson</artifactId> |
| 56 | <scope>test</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>junit</groupId> |
| 60 | <artifactId>junit</artifactId> |
| 61 | <scope>test</scope> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.onap.policy.models.policy-models-interactions</groupId> |
| 65 | <artifactId>simulators</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.onap.policy.common</groupId> |
| 71 | <artifactId>policy-endpoints</artifactId> |
| 72 | <version>${policy.common.version}</version> |
| 73 | <scope>provided</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
| 77 | <artifactId>actor.test</artifactId> |
| 78 | <version>${project.version}</version> |
| 79 | <scope>test</scope> |
| 80 | </dependency> |
| 81 | <dependency> |
| 82 | <groupId>org.powermock</groupId> |
| 83 | <artifactId>powermock-api-mockito2</artifactId> |
| 84 | <scope>test</scope> |
| 85 | </dependency> |
| 86 | </dependencies> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 87 | </project> |