blob: 62a74399b6d13b25c0c8aa9dcd2ef1ac4af1699f [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">
Dan Timoney10b6a722018-02-22 17:22:31 -06003 <modelVersion>4.0.0</modelVersion>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -04004
Dan Timoney10b6a722018-02-22 17:22:31 -06005 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
Dan Timoney000a7a02024-10-21 16:57:55 -04008 <version>3.0.1-SNAPSHOT</version>
Dan Timoney5de81962021-01-26 13:15:47 -05009 <relativePath/>
Dan Timoney10b6a722018-02-22 17:22:31 -060010 </parent>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040011
Dan Timoney10b6a722018-02-22 17:22:31 -060012 <groupId>org.onap.ccsdk.sli.northbound</groupId>
13 <artifactId>dataChange-provider</artifactId>
Dan Timoneye4779612024-10-03 16:10:21 -040014 <version>2.0.1-SNAPSHOT</version>
Dan Timoney10b6a722018-02-22 17:22:31 -060015 <packaging>bundle</packaging>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040016
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050017 <name>ccsdk-sli-northbound :: ${project.artifactId}</name>
shashikanth20806dd2017-10-03 16:58:51 +053018
Timoney, Dan (dt5972)90adbb62018-12-20 14:29:35 -050019 <dependencyManagement>
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050020 <dependencies>
21 <dependency>
22 <groupId>org.onap.ccsdk.sli.core</groupId>
23 <artifactId>sli-core-artifacts</artifactId>
24 <version>${project.version}</version>
25 <type>pom</type>
26 <scope>import</scope>
27 </dependency>
28 </dependencies>
Timoney, Dan (dt5972)90adbb62018-12-20 14:29:35 -050029 </dependencyManagement>
Dan Timoney10b6a722018-02-22 17:22:31 -060030 <dependencies>
31 <dependency>
32 <groupId>org.onap.ccsdk.sli.northbound</groupId>
33 <artifactId>dataChange-model</artifactId>
34 <version>${project.version}</version>
35 </dependency>
shashikanth20806dd2017-10-03 16:58:51 +053036
Dan Timoney10b6a722018-02-22 17:22:31 -060037 <dependency>
Michael DÜrre56c27da2021-01-18 05:41:16 +010038 <groupId>org.opendaylight.mdsal</groupId>
39 <artifactId>mdsal-binding-api</artifactId>
Dan Timoney10b6a722018-02-22 17:22:31 -060040 </dependency>
41 <dependency>
42 <groupId>org.onap.ccsdk.sli.core</groupId>
43 <artifactId>sli-common</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.onap.ccsdk.sli.core</groupId>
47 <artifactId>sli-provider</artifactId>
48 </dependency>
49
50 <dependency>
Michael DÜrre56c27da2021-01-18 05:41:16 +010051 <groupId>org.opendaylight.mdsal</groupId>
52 <artifactId>mdsal-binding-test-model</artifactId>
Dan Timoney0e4e58b2021-01-29 17:42:42 +000053 <scope>test</scope>
54 </dependency>
55 <dependency>
Michael DÜrre56c27da2021-01-18 05:41:16 +010056 <groupId>org.opendaylight.mdsal</groupId>
57 <artifactId>mdsal-dom-api</artifactId>
Dan Timoney0e4e58b2021-01-29 17:42:42 +000058 <scope>test</scope>
59 </dependency>
Michael DÜrre56c27da2021-01-18 05:41:16 +010060
Singal, Kapil (ks220y)94f4b9b2021-03-02 20:00:49 -050061 <!-- <dependency> -->
62 <!-- <groupId>org.opendaylight.controller</groupId> -->
63 <!-- <artifactId>sal-binding-broker-impl</artifactId> -->
64 <!-- <scope>test</scope> -->
65 <!-- </dependency> -->
66 <!-- <dependency> -->
67 <!-- <groupId>org.opendaylight.controller</groupId> -->
68 <!-- <artifactId>sal-binding-broker-impl</artifactId> -->
69 <!-- <type>test-jar</type> -->
70 <!-- <classifier>tests</classifier> -->
71 <!-- <scope>test</scope> -->
72 <!-- </dependency> -->
Dan Timoney10b6a722018-02-22 17:22:31 -060073 <dependency>
74 <groupId>junit</groupId>
75 <artifactId>junit</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.testng</groupId>
80 <artifactId>testng</artifactId>
Dan Timoney10b6a722018-02-22 17:22:31 -060081 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.mockito</groupId>
85 <artifactId>mockito-core</artifactId>
86 <scope>test</scope>
87 </dependency>
88 </dependencies>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040089</project>