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 Huawei 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 | |
Jim Hahn | 35867f2 | 2020-02-08 08:32:59 -0500 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 26 | |
Jim Hahn | 35867f2 | 2020-02-08 08:32:59 -0500 | [diff] [blame] | 27 | <parent> |
| 28 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
| 29 | <artifactId>model-actors</artifactId> |
liamfallon | 125b074 | 2020-03-24 09:50:17 +0000 | [diff] [blame^] | 30 | <version>2.2.2-SNAPSHOT</version> |
Jim Hahn | 35867f2 | 2020-02-08 08:32:59 -0500 | [diff] [blame] | 31 | </parent> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 32 | |
Jim Hahn | 35867f2 | 2020-02-08 08:32:59 -0500 | [diff] [blame] | 33 | <artifactId>actor.sdnc</artifactId> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 34 | |
Jim Hahn | 35867f2 | 2020-02-08 08:32:59 -0500 | [diff] [blame] | 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
| 38 | <artifactId>actorServiceProvider</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | <scope>provided</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 44 | <artifactId>sdnc</artifactId> |
| 45 | <version>${project.version}</version> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 50 | <artifactId>events</artifactId> |
| 51 | <version>${project.version}</version> |
| 52 | <scope>provided</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 56 | <artifactId>aai</artifactId> |
| 57 | <version>${project.version}</version> |
| 58 | <scope>provided</scope> |
| 59 | </dependency> |
| 60 | <dependency> |
| 61 | <groupId>org.onap.policy.common</groupId> |
| 62 | <artifactId>policy-endpoints</artifactId> |
| 63 | <version>${policy.common.version}</version> |
| 64 | <scope>provided</scope> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>junit</groupId> |
| 68 | <artifactId>junit</artifactId> |
| 69 | <scope>test</scope> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId> |
| 73 | <artifactId>actor.test</artifactId> |
| 74 | <version>${project.version}</version> |
| 75 | <scope>test</scope> |
| 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.onap.policy.models.policy-models-interactions</groupId> |
| 79 | <artifactId>simulators</artifactId> |
| 80 | <version>${project.version}</version> |
| 81 | <scope>test</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.powermock</groupId> |
| 85 | <artifactId>powermock-api-mockito2</artifactId> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | </dependencies> |
ning.xi | 2d99454 | 2019-04-01 03:07:40 +0000 | [diff] [blame] | 89 | </project> |