Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | aai |
| 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 | |
pramod.jamkhedkar | 38c89e3 | 2019-04-09 14:40:16 -0400 | [diff] [blame] | 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" 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> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 26 | |
pramod.jamkhedkar | 38c89e3 | 2019-04-09 14:40:16 -0400 | [diff] [blame] | 27 | <parent> |
| 28 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 29 | <artifactId>model-impl</artifactId> |
Pamela Dragosh | 4b43d97 | 2019-06-21 16:29:00 -0400 | [diff] [blame^] | 30 | <version>2.1.1-SNAPSHOT</version> |
pramod.jamkhedkar | 38c89e3 | 2019-04-09 14:40:16 -0400 | [diff] [blame] | 31 | </parent> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 32 | |
pramod.jamkhedkar | 38c89e3 | 2019-04-09 14:40:16 -0400 | [diff] [blame] | 33 | <artifactId>aai</artifactId> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 34 | |
pramod.jamkhedkar | 38c89e3 | 2019-04-09 14:40:16 -0400 | [diff] [blame] | 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>com.google.code.gson</groupId> |
| 38 | <artifactId>gson</artifactId> |
| 39 | <scope>provided</scope> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId> |
| 43 | <artifactId>rest</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>junit</groupId> |
| 48 | <artifactId>junit</artifactId> |
| 49 | <scope>test</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.mockito</groupId> |
| 53 | <artifactId>mockito-core</artifactId> |
| 54 | <version>2.13.0</version> |
| 55 | <scope>test</scope> |
| 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>org.powermock</groupId> |
| 59 | <artifactId>powermock-core</artifactId> |
| 60 | <scope>test</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.onap.policy.common</groupId> |
| 64 | <artifactId>policy-endpoints</artifactId> |
| 65 | <version>${policy.common.version}</version> |
| 66 | <scope>provided</scope> |
| 67 | </dependency> |
| 68 | <dependency> |
| 69 | <groupId>org.onap.aai.schema-service</groupId> |
| 70 | <artifactId>aai-schema</artifactId> |
pramod.jamkhedkar | 89af78c | 2019-05-16 09:11:29 -0400 | [diff] [blame] | 71 | <version>1.0.3</version> |
pramod.jamkhedkar | 38c89e3 | 2019-04-09 14:40:16 -0400 | [diff] [blame] | 72 | </dependency> |
| 73 | </dependencies> |
Hengye | b150aa8 | 2019-03-25 14:32:21 +0000 | [diff] [blame] | 74 | </project> |