Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | ============LICENSE_START======================================================= |
| 4 | Copyright (C) 2019-2020 Nordix Foundation. |
| 5 | ================================================================================ |
| 6 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | you may not use this file except in compliance with the License. |
| 8 | You may obtain a copy of the License at |
| 9 | |
| 10 | http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | |
| 12 | Unless required by applicable law or agreed to in writing, software |
| 13 | distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | See the License for the specific language governing permissions and |
| 16 | limitations under the License. |
| 17 | |
| 18 | SPDX-License-Identifier: Apache-2.0 |
| 19 | ============LICENSE_END========================================================= |
| 20 | --> |
| 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> |
| 25 | |
| 26 | <parent> |
| 27 | <groupId>org.onap.ccsdk.parent</groupId> |
| 28 | <artifactId>binding-parent</artifactId> |
| 29 | <version>1.4.3</version> |
| 30 | <relativePath/> |
| 31 | </parent> |
| 32 | |
| 33 | <groupId>org.onap.sdnc.northbound</groupId> |
| 34 | <artifactId>nonrt-ric-api-provider</artifactId> |
| 35 | <version>1.7.3-SNAPSHOT</version> |
| 36 | <packaging>bundle</packaging> |
| 37 | |
| 38 | <name>sdnc-northbound :: nonrt-ric-api :: ${project.artifactId}</name> |
| 39 | |
| 40 | <dependencyManagement> |
| 41 | <dependencies> |
| 42 | <dependency> |
| 43 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 44 | <artifactId>sli-core-artifacts</artifactId> |
| 45 | <version>${ccsdk.sli.core.version}</version> |
| 46 | <type>pom</type> |
| 47 | <scope>import</scope> |
| 48 | </dependency> |
| 49 | </dependencies> |
| 50 | </dependencyManagement> |
| 51 | <dependencies> |
| 52 | <dependency> |
| 53 | <groupId>org.onap.sdnc.northbound</groupId> |
| 54 | <artifactId>nonrt-ric-api-model</artifactId> |
| 55 | <version>${project.version}</version> |
| 56 | </dependency> |
| 57 | <dependency> |
RehanRaza | 799dafa | 2019-10-17 08:18:56 +0200 | [diff] [blame^] | 58 | <groupId>org.springframework</groupId> |
| 59 | <artifactId>spring-context</artifactId> |
| 60 | <scope>provided</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.springframework</groupId> |
| 64 | <artifactId>spring-web</artifactId> |
| 65 | <scope>provided</scope> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.apache.commons</groupId> |
| 69 | <artifactId>commons-lang3</artifactId> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 73 | <artifactId>sli-common</artifactId> |
| 74 | </dependency> |
| 75 | <dependency> |
| 76 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 77 | <artifactId>sli-provider</artifactId> |
| 78 | </dependency> |
| 79 | |
| 80 | <dependency> |
| 81 | <groupId>org.opendaylight.controller</groupId> |
| 82 | <artifactId>sal-binding-api</artifactId> |
| 83 | </dependency> |
| 84 | |
| 85 | <dependency> |
| 86 | <groupId>org.opendaylight.controller</groupId> |
| 87 | <artifactId>sal-common-util</artifactId> |
| 88 | </dependency> |
| 89 | <dependency> |
| 90 | <groupId>org.opendaylight.controller</groupId> |
| 91 | <artifactId>sal-test-model</artifactId> |
| 92 | <scope>test</scope> |
| 93 | </dependency> |
| 94 | |
| 95 | |
| 96 | <dependency> |
| 97 | <groupId>org.opendaylight.controller</groupId> |
| 98 | <artifactId>sal-binding-broker-impl</artifactId> |
| 99 | <scope>test</scope> |
| 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.opendaylight.controller</groupId> |
| 103 | <artifactId>sal-binding-broker-impl</artifactId> |
| 104 | <type>test-jar</type> |
| 105 | <classifier>tests</classifier> |
| 106 | <scope>test</scope> |
| 107 | </dependency> |
| 108 | <dependency> |
| 109 | <groupId>junit</groupId> |
| 110 | <artifactId>junit</artifactId> |
| 111 | <scope>test</scope> |
| 112 | </dependency> |
| 113 | <dependency> |
| 114 | <groupId>org.mockito</groupId> |
| 115 | <artifactId>mockito-core</artifactId> |
| 116 | <version>1.10.19</version> |
| 117 | <scope>test</scope> |
| 118 | </dependency> |
RehanRaza | 799dafa | 2019-10-17 08:18:56 +0200 | [diff] [blame^] | 119 | <dependency> |
| 120 | <groupId>org.json</groupId> |
| 121 | <artifactId>json</artifactId> |
| 122 | </dependency> |
Lathish | b6fe5a1 | 2019-10-09 10:32:09 +0100 | [diff] [blame] | 123 | </dependencies> |
| 124 | </project> |