blob: 97c39dc65249e6a549b509557eeb6d2a1a5b1ef5 [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)e530f302019-03-19 17:11:28 -04008 <version>1.2.2-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>
Timoney, Dan (dt5972)e530f302019-03-19 17:11:28 -040014 <version>0.4.2-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
Timoney, Dan (dt5972)90adbb62018-12-20 14:29:35 -050023 <dependencyManagement>
24 <dependencies>
25 <dependency>
26 <groupId>org.onap.ccsdk.sli.core</groupId>
27 <artifactId>sli-core-artifacts</artifactId>
28 <version>${ccsdk.sli.core.version}</version>
29 <type>pom</type>
30 <scope>import</scope>
31 </dependency>
32 </dependencies>
33 </dependencyManagement>
34
shashikanthcd7f49c2017-09-27 15:43:48 +053035 <dependencies>
36 <dependency>
37 <groupId>org.onap.ccsdk.sli.northbound</groupId>
38 <artifactId>asdcApi-model</artifactId>
39 <version>${project.version}</version>
40 </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-binding-api</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.opendaylight.controller</groupId>
49 <artifactId>sal-common-util</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053050 </dependency>
Dan Timoney10b6a722018-02-22 17:22:31 -060051
shashikanthcd7f49c2017-09-27 15:43:48 +053052 <dependency>
53 <groupId>org.onap.ccsdk.sli.core</groupId>
54 <artifactId>sli-common</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053055 </dependency>
56 <dependency>
57 <groupId>org.onap.ccsdk.sli.core</groupId>
58 <artifactId>sli-provider</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053059 </dependency>
60
61 <dependency>
62 <groupId>org.opendaylight.controller</groupId>
63 <artifactId>sal-test-model</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053064 <scope>test</scope>
65 </dependency>
Timoney, Dan (dt5972)a63bbe22018-06-18 10:49:42 -040066
shashikanthcd7f49c2017-09-27 15:43:48 +053067
68 <dependency>
69 <groupId>org.opendaylight.controller</groupId>
70 <artifactId>sal-binding-broker-impl</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053071 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.opendaylight.controller</groupId>
75 <artifactId>sal-binding-broker-impl</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053076 <type>test-jar</type>
77 <classifier>tests</classifier>
78 <scope>test</scope>
79 </dependency>
80 <dependency>
81 <groupId>junit</groupId>
82 <artifactId>junit</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053083 <scope>test</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.testng</groupId>
87 <artifactId>testng</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053088 <scope>test</scope>
89 </dependency>
90 <dependency>
91 <groupId>org.mockito</groupId>
92 <artifactId>mockito-core</artifactId>
shashikanthcd7f49c2017-09-27 15:43:48 +053093 <scope>test</scope>
94 </dependency>
95 </dependencies>
96
Dan Timoney10b6a722018-02-22 17:22:31 -060097
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040098</project>