blob: 7b3c8598c480929dd16466b4546e45ed746cd4f8 [file] [log] [blame]
Dan Timoneyea5bf0a2017-07-18 20:32:15 -04001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -05002<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">
shashikanthcd7f49c2017-09-27 15:43:48 +05303 <modelVersion>4.0.0</modelVersion>
Dan Timoney10b6a722018-02-22 17:22:31 -06004
shashikanthcd7f49c2017-09-27 15:43:48 +05305 <parent>
Dan Timoney10b6a722018-02-22 17:22:31 -06006 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
Dan Timoneyb5a1f492022-11-07 13:38:17 -05008 <version>2.5.0</version>
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -05009 <relativePath/>
shashikanthcd7f49c2017-09-27 15:43:48 +053010 </parent>
Dan Timoney10b6a722018-02-22 17:22:31 -060011
12 <groupId>org.onap.ccsdk.sli.northbound</groupId>
shashikanthcd7f49c2017-09-27 15:43:48 +053013 <artifactId>asdcApi-provider</artifactId>
Dan Timoney5383edf2022-10-20 15:29:33 -040014 <version>1.6.0-SNAPSHOT</version>
shashikanthcd7f49c2017-09-27 15:43:48 +053015 <packaging>bundle</packaging>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040016
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050017 <name>ccsdk-sli-northbound :: ${project.artifactId}</name>
Dan Timoney10b6a722018-02-22 17:22:31 -060018
Timoney, Dan (dt5972)90adbb62018-12-20 14:29:35 -050019 <dependencyManagement>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050020 <dependencies>
21 <dependency>
22 <groupId>org.onap.ccsdk.sli.core</groupId>
23 <artifactId>sli-core-artifacts</artifactId>
24 <version>${project.version}</version>
25 <type>pom</type>
26 <scope>import</scope>
27 </dependency>
28 </dependencies>
Timoney, Dan (dt5972)90adbb62018-12-20 14:29:35 -050029 </dependencyManagement>
shashikanthcd7f49c2017-09-27 15:43:48 +053030 <dependencies>
31 <dependency>
32 <groupId>org.onap.ccsdk.sli.northbound</groupId>
33 <artifactId>asdcApi-model</artifactId>
34 <version>${project.version}</version>
35 </dependency>
Dan Timoney10b6a722018-02-22 17:22:31 -060036
shashikanthcd7f49c2017-09-27 15:43:48 +053037 <dependency>
Michael DÜrre56c27da2021-01-18 05:41:16 +010038 <groupId>org.opendaylight.mdsal</groupId>
39 <artifactId>mdsal-binding-api</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053040 </dependency>
Dan Timoney10b6a722018-02-22 17:22:31 -060041
shashikanthcd7f49c2017-09-27 15:43:48 +053042 <dependency>
43 <groupId>org.opendaylight.controller</groupId>
44 <artifactId>sal-common-util</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053045 </dependency>
Dan Timoney10b6a722018-02-22 17:22:31 -060046
shashikanthcd7f49c2017-09-27 15:43:48 +053047 <dependency>
48 <groupId>org.onap.ccsdk.sli.core</groupId>
49 <artifactId>sli-common</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053050 </dependency>
51 <dependency>
52 <groupId>org.onap.ccsdk.sli.core</groupId>
53 <artifactId>sli-provider</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053054 </dependency>
55
56 <dependency>
Michael DÜrre56c27da2021-01-18 05:41:16 +010057 <groupId>org.opendaylight.mdsal</groupId>
58 <artifactId>mdsal-binding-test-model</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053059 <scope>test</scope>
60 </dependency>
Timoney, Dan (dt5972)a63bbe22018-06-18 10:49:42 -040061
shashikanthcd7f49c2017-09-27 15:43:48 +053062 <dependency>
Michael DÜrre56c27da2021-01-18 05:41:16 +010063 <groupId>org.opendaylight.mdsal</groupId>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050064 <artifactId>mdsal-binding-dom-adapter</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053065 <scope>test</scope>
66 </dependency>
Michael DÜrre56c27da2021-01-18 05:41:16 +010067
shashikanthcd7f49c2017-09-27 15:43:48 +053068 <dependency>
69 <groupId>junit</groupId>
70 <artifactId>junit</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053071 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.testng</groupId>
75 <artifactId>testng</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053076 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.mockito</groupId>
80 <artifactId>mockito-core</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053081 <scope>test</scope>
82 </dependency>
83 </dependencies>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040084</project>