Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Singal, Kapil (ks220y) | 6ff6ed9 | 2020-02-03 09:31:39 -0500 | [diff] [blame] | 2 | <!-- |
| 3 | ~ ============LICENSE_START======================================================= |
| 4 | ~ ONAP : ccsdk features |
| 5 | ~ ================================================================================ |
| 6 | ~ Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. |
| 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 | |
Timoney, Dan (dt5972) | b511df0 | 2019-11-13 10:49:18 -0500 | [diff] [blame] | 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 25 | |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 26 | <parent> |
| 27 | <groupId>org.onap.ccsdk.parent</groupId> |
| 28 | <artifactId>binding-parent</artifactId> |
Dan Timoney | fc05c3c | 2020-03-05 15:52:09 -0500 | [diff] [blame] | 29 | <version>2.0.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 30 | <relativePath/> |
| 31 | </parent> |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 32 | |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 33 | <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId> |
| 34 | <artifactId>oofpcipoc-provider</artifactId> |
Dan Timoney | fc05c3c | 2020-03-05 15:52:09 -0500 | [diff] [blame] | 35 | <version>1.0.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 36 | <packaging>bundle</packaging> |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 37 | |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 38 | <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name> |
| 39 | |
Timoney, Dan (dt5972) | 03c25f0 | 2019-11-21 10:03:30 -0500 | [diff] [blame] | 40 | <properties> |
| 41 | <ccsdk.sli.core.version>${project.version}</ccsdk.sli.core.version> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 42 | <ccsdk.sli.northbound.version>${project.version}</ccsdk.sli.northbound.version> |
Timoney, Dan (dt5972) | 03c25f0 | 2019-11-21 10:03:30 -0500 | [diff] [blame] | 43 | </properties> |
| 44 | |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 45 | <dependencyManagement> |
| 46 | <dependencies> |
| 47 | <dependency> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 48 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 49 | <artifactId>sli-core-artifacts</artifactId> |
| 50 | <version>${ccsdk.sli.core.version}</version> |
| 51 | <type>pom</type> |
| 52 | <scope>import</scope> |
| 53 | </dependency> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 54 | </dependencies> |
| 55 | </dependencyManagement> |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 56 | <dependencies> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 57 | <dependency> |
| 58 | <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId> |
| 59 | <artifactId>oofpcipoc-model</artifactId> |
| 60 | <version>${project.version}</version> |
| 61 | </dependency> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 62 | |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 63 | <dependency> |
| 64 | <groupId>org.opendaylight.controller</groupId> |
| 65 | <artifactId>sal-binding-api</artifactId> |
| 66 | </dependency> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 67 | |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 68 | <dependency> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 69 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 70 | <artifactId>sli-common</artifactId> |
Dan Timoney | 7852314 | 2020-02-24 16:24:34 -0500 | [diff] [blame] | 71 | <scope>provided</scope> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.onap.ccsdk.sli.core</groupId> |
| 75 | <artifactId>sli-provider</artifactId> |
Dan Timoney | 7852314 | 2020-02-24 16:24:34 -0500 | [diff] [blame] | 76 | <scope>provided</scope> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.opendaylight.controller</groupId> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 80 | <artifactId>sal-test-model</artifactId> |
| 81 | <scope>test</scope> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 84 | <groupId>org.opendaylight.controller</groupId> |
| 85 | <artifactId>sal-binding-broker-impl</artifactId> |
| 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.opendaylight.controller</groupId> |
| 90 | <artifactId>sal-binding-broker-impl</artifactId> |
| 91 | <type>test-jar</type> |
| 92 | <classifier>tests</classifier> |
| 93 | <scope>test</scope> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>junit</groupId> |
| 97 | <artifactId>junit</artifactId> |
| 98 | <scope>test</scope> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.mockito</groupId> |
| 102 | <artifactId>mockito-core</artifactId> |
| 103 | <scope>test</scope> |
| 104 | </dependency> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 105 | <dependency> |
| 106 | <groupId>org.testng</groupId> |
| 107 | <artifactId>testng</artifactId> |
| 108 | <scope>test</scope> |
| 109 | </dependency> |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 110 | |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 111 | <dependency> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 112 | <groupId>org.opendaylight.controller</groupId> |
| 113 | <artifactId>sal-common-util</artifactId> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 114 | </dependency> |
| 115 | <dependency> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 116 | <groupId>org.opendaylight.controller</groupId> |
| 117 | <artifactId>sal-core-api</artifactId> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 118 | </dependency> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 119 | |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 120 | <dependency> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 121 | <groupId>org.opendaylight.yangtools</groupId> |
| 122 | <artifactId>yang-data-impl</artifactId> |
Timoney, Dan (dt5972) | a6557cb | 2019-09-11 15:31:59 -0400 | [diff] [blame] | 123 | </dependency> |
Sandeep Shah | 0b526c7 | 2020-02-18 21:38:48 -0600 | [diff] [blame] | 124 | |
| 125 | <dependency> |
| 126 | <groupId>org.opendaylight.controller</groupId> |
| 127 | <artifactId>sal-binding-broker-impl</artifactId> |
| 128 | <type>test-jar</type> |
| 129 | <classifier>tests</classifier> |
| 130 | <scope>test</scope> |
| 131 | </dependency> |
| 132 | |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 133 | </dependencies> |
Sandeep Shah | 3da6a9e | 2019-04-06 18:53:15 -0500 | [diff] [blame] | 134 | </project> |