blob: 84ac3313ee4cd4d3eb17f49dd39f38e4d1419af6 [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>
Timoney, Dan (dt5972)feb63252019-01-08 12:29:46 -05008 <version>1.2.0</version>
9 <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>
Timoney, Dan (dt5972)9004b362018-10-23 08:36:33 -040014 <version>0.4.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)feb63252019-01-08 12:29:46 -050019 <properties>
20 <ccsdk.sli.northbound.version>${project.version}</ccsdk.sli.northbound.version>
21 </properties>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040022
shashikanthcd7f49c2017-09-27 15:43:48 +053023 <dependencies>
24 <dependency>
25 <groupId>org.onap.ccsdk.sli.northbound</groupId>
26 <artifactId>asdcApi-model</artifactId>
27 <version>${project.version}</version>
28 </dependency>
29 <dependency>
30 <groupId>org.opendaylight.controller</groupId>
shashikanthcd7f49c2017-09-27 15:43:48 +053031 <artifactId>sal-binding-config</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053032 </dependency>
Dan Timoney10b6a722018-02-22 17:22:31 -060033
shashikanthcd7f49c2017-09-27 15:43:48 +053034 <dependency>
35 <groupId>org.opendaylight.controller</groupId>
36 <artifactId>sal-binding-api</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053037 </dependency>
Dan Timoney10b6a722018-02-22 17:22:31 -060038
shashikanthcd7f49c2017-09-27 15:43:48 +053039 <dependency>
40 <groupId>org.opendaylight.controller</groupId>
41 <artifactId>sal-common-util</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053042 </dependency>
Dan Timoney10b6a722018-02-22 17:22:31 -060043
shashikanthcd7f49c2017-09-27 15:43:48 +053044 <dependency>
45 <groupId>org.onap.ccsdk.sli.core</groupId>
46 <artifactId>sli-common</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053047 </dependency>
48 <dependency>
49 <groupId>org.onap.ccsdk.sli.core</groupId>
50 <artifactId>sli-provider</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053051 </dependency>
52
53 <dependency>
54 <groupId>org.opendaylight.controller</groupId>
55 <artifactId>sal-test-model</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053056 <scope>test</scope>
57 </dependency>
Timoney, Dan (dt5972)a63bbe22018-06-18 10:49:42 -040058
shashikanthcd7f49c2017-09-27 15:43:48 +053059
60 <dependency>
61 <groupId>org.opendaylight.controller</groupId>
62 <artifactId>sal-binding-broker-impl</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053063 <scope>test</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.opendaylight.controller</groupId>
67 <artifactId>sal-binding-broker-impl</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053068 <type>test-jar</type>
69 <classifier>tests</classifier>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>junit</groupId>
74 <artifactId>junit</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053075 <scope>test</scope>
76 </dependency>
77 <dependency>
78 <groupId>org.testng</groupId>
79 <artifactId>testng</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053080 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.mockito</groupId>
84 <artifactId>mockito-core</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053085 <scope>test</scope>
86 </dependency>
87 </dependencies>
88
Dan Timoney10b6a722018-02-22 17:22:31 -060089
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040090</project>