Jim Hahn | bc02433 | 2020-03-17 17:41:59 -0400 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | ONAP |
| 4 | ================================================================================ |
Jim Hahn | 6be3c1a | 2021-07-12 15:25:53 -0400 | [diff] [blame] | 5 | Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. |
Jim Hahn | bc02433 | 2020-03-17 17:41:59 -0400 | [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 | |
| 19 | SPDX-License-Identifier: Apache-2.0 |
| 20 | ============LICENSE_END========================================================= |
| 21 | --> |
| 22 | |
| 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 24 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 25 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <parent> |
| 28 | <groupId>org.onap.policy.models.sim</groupId> |
| 29 | <artifactId>policy-models-sim</artifactId> |
liamfallon | 63540a0 | 2021-10-13 19:29:38 +0100 | [diff] [blame^] | 30 | <version>2.5.2-SNAPSHOT</version> |
Jim Hahn | bc02433 | 2020-03-17 17:41:59 -0400 | [diff] [blame] | 31 | </parent> |
| 32 | |
| 33 | <artifactId>policy-models-simulators</artifactId> |
| 34 | |
| 35 | <name>${project.artifactId}</name> |
| 36 | <description>A module that runs all "simulators", including DMaaP.</description> |
| 37 | |
| 38 | <dependencies> |
| 39 | <dependency> |
| 40 | <groupId>org.onap.policy.models.policy-models-interactions</groupId> |
| 41 | <artifactId>simulators</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | </dependency> |
| 44 | <dependency> |
| 45 | <groupId>junit</groupId> |
| 46 | <artifactId>junit</artifactId> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.powermock</groupId> |
| 51 | <artifactId>powermock-api-mockito2</artifactId> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | </dependencies> |
Jim Hahn | bc02433 | 2020-03-17 17:41:59 -0400 | [diff] [blame] | 55 | </project> |