blob: 19e5660f76d39f56f7ffcd489899f6109dae843f [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 Timoney7de29bf2020-11-25 08:29:23 -05008 <version>2.1.1-SNAPSHOT</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 Timoney8f2fcda2020-12-02 07:48:49 -050014 <version>1.2.0-SNAPSHOT</version>
shashikanthcd7f49c2017-09-27 15:43:48 +053015 <packaging>bundle</packaging>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040016
Dan Timoney10b6a722018-02-22 17:22:31 -060017 <name>ccsdk-sli-northbound :: asdcApi :: ${project.artifactId}</name>
18
Timoney, Dan (dt5972)90adbb62018-12-20 14:29:35 -050019 <dependencyManagement>
20 <dependencies>
21 <dependency>
Dan Timoney8a620f72020-03-05 15:09:19 -050022 <groupId>org.onap.ccsdk.sli.core</groupId>
23 <artifactId>sli-core-artifacts</artifactId>
Dan Timoneybe5662d2020-12-07 12:23:05 -050024 <version>${project.version}</version>
Dan Timoney8a620f72020-03-05 15:09:19 -050025 <type>pom</type>
26 <scope>import</scope>
Timoney, Dan (dt5972)90adbb62018-12-20 14:29:35 -050027 </dependency>
28 </dependencies>
29 </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>
38 <groupId>org.opendaylight.controller</groupId>
39 <artifactId>sal-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>
57 <groupId>org.opendaylight.controller</groupId>
58 <artifactId>sal-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
63 <dependency>
64 <groupId>org.opendaylight.controller</groupId>
65 <artifactId>sal-binding-broker-impl</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053066 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.opendaylight.controller</groupId>
70 <artifactId>sal-binding-broker-impl</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053071 <type>test-jar</type>
72 <classifier>tests</classifier>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>junit</groupId>
77 <artifactId>junit</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053078 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.testng</groupId>
82 <artifactId>testng</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053083 <scope>test</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.mockito</groupId>
87 <artifactId>mockito-core</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053088 <scope>test</scope>
89 </dependency>
90 </dependencies>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040091</project>