blob: 1098160b655eeceba9ca8f6b6993a4cd7595974e [file] [log] [blame]
Dan Timoneyea5bf0a2017-07-18 20:32:15 -04001<?xml version="1.0" encoding="UTF-8"?>
Dan Timoney10b6a722018-02-22 17:22:31 -06002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 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 +05304 <modelVersion>4.0.0</modelVersion>
Dan Timoney10b6a722018-02-22 17:22:31 -06005
shashikanthcd7f49c2017-09-27 15:43:48 +05306 <parent>
Dan Timoney10b6a722018-02-22 17:22:31 -06007 <groupId>org.onap.ccsdk.parent</groupId>
8 <artifactId>binding-parent</artifactId>
Timoney, Dan (dt5972)751d50b2018-06-06 14:03:24 -04009 <version>1.1.0-SNAPSHOT</version>
Dan Timoney10b6a722018-02-22 17:22:31 -060010 <relativePath />
shashikanthcd7f49c2017-09-27 15:43:48 +053011 </parent>
Dan Timoney10b6a722018-02-22 17:22:31 -060012
13 <groupId>org.onap.ccsdk.sli.northbound</groupId>
shashikanthcd7f49c2017-09-27 15:43:48 +053014 <artifactId>asdcApi-provider</artifactId>
Timoney, Dan (dt5972)751d50b2018-06-06 14:03:24 -040015 <version>0.3.0-SNAPSHOT</version>
shashikanthcd7f49c2017-09-27 15:43:48 +053016 <packaging>bundle</packaging>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040017
Dan Timoney10b6a722018-02-22 17:22:31 -060018 <name>ccsdk-sli-northbound :: asdcApi :: ${project.artifactId}</name>
19
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040020
shashikanthcd7f49c2017-09-27 15:43:48 +053021 <dependencies>
22 <dependency>
23 <groupId>org.onap.ccsdk.sli.northbound</groupId>
24 <artifactId>asdcApi-model</artifactId>
25 <version>${project.version}</version>
26 </dependency>
27 <dependency>
28 <groupId>org.opendaylight.controller</groupId>
shashikanthcd7f49c2017-09-27 15:43:48 +053029 <artifactId>sal-binding-config</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053030 </dependency>
Dan Timoney10b6a722018-02-22 17:22:31 -060031
shashikanthcd7f49c2017-09-27 15:43:48 +053032 <dependency>
33 <groupId>org.opendaylight.controller</groupId>
34 <artifactId>sal-binding-api</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053035 </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-common-util</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.onap.ccsdk.sli.core</groupId>
44 <artifactId>sli-common</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053045 </dependency>
46 <dependency>
47 <groupId>org.onap.ccsdk.sli.core</groupId>
48 <artifactId>sli-provider</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053049 </dependency>
50
51 <dependency>
52 <groupId>org.opendaylight.controller</groupId>
53 <artifactId>sal-test-model</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053054 <scope>test</scope>
55 </dependency>
Timoney, Dan (dt5972)a63bbe22018-06-18 10:49:42 -040056
shashikanthcd7f49c2017-09-27 15:43:48 +053057
58 <dependency>
59 <groupId>org.opendaylight.controller</groupId>
60 <artifactId>sal-binding-broker-impl</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053061 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>org.opendaylight.controller</groupId>
65 <artifactId>sal-binding-broker-impl</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053066 <type>test-jar</type>
67 <classifier>tests</classifier>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>junit</groupId>
72 <artifactId>junit</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053073 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.testng</groupId>
77 <artifactId>testng</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053078 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>org.mockito</groupId>
82 <artifactId>mockito-core</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053083 <scope>test</scope>
84 </dependency>
85 </dependencies>
86
Dan Timoney10b6a722018-02-22 17:22:31 -060087
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040088</project>