blob: 3f33af028162439d6c5ff73645b53b6ccb7d9f9f [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>
9 <version>1.0.1-SNAPSHOT</version>
10 <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>
Dan Timoney10b6a722018-02-22 17:22:31 -060015 <version>0.2.1-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>
56 <dependency>
57 <groupId>org.opendaylight.netconf</groupId>
58 <artifactId>sal-rest-connector</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053059 <scope>test</scope>
60 </dependency>
61
62 <dependency>
63 <groupId>org.opendaylight.controller</groupId>
64 <artifactId>sal-binding-broker-impl</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053065 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.opendaylight.controller</groupId>
69 <artifactId>sal-binding-broker-impl</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053070 <type>test-jar</type>
71 <classifier>tests</classifier>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>junit</groupId>
76 <artifactId>junit</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053077 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.testng</groupId>
81 <artifactId>testng</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053082 <scope>test</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.mockito</groupId>
86 <artifactId>mockito-core</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053087 <scope>test</scope>
88 </dependency>
89 </dependencies>
90
Dan Timoney10b6a722018-02-22 17:22:31 -060091
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040092</project>