blob: 10f6f001a81eceaeef6dafba800a875eb20ad8ac [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 Timoney7de29bf2020-11-25 08:29:23 -05008 <version>2.1.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 Timoney8f2fcda2020-12-02 07:48:49 -050014 <version>1.2.0-SNAPSHOT</version>
Dan Timoney10b6a722018-02-22 17:22:31 -060015 <packaging>bundle</packaging>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040016
Dan Timoney10b6a722018-02-22 17:22:31 -060017 <name>ccsdk-sli-northbound :: dataChange :: ${project.artifactId}</name>
shashikanth20806dd2017-10-03 16:58:51 +053018
Timoney, Dan (dt5972)90adbb62018-12-20 14:29:35 -050019 <dependencyManagement>
Dan Timoney5de81962021-01-26 13:15:47 -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>
Dan Timoney0e4e58b2021-01-29 17:42:42 +000038 <groupId>org.opendaylight.controller</groupId>
39 <artifactId>sal-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>
Dan Timoney0e4e58b2021-01-29 17:42:42 +000051 <groupId>org.opendaylight.controller</groupId>
52 <artifactId>sal-test-model</artifactId>
Dan Timoney10b6a722018-02-22 17:22:31 -060053 <scope>test</scope>
54 </dependency>
Michael DÜrrece4e5f92021-01-18 05:41:16 +010055
Dan Timoney0e4e58b2021-01-29 17:42:42 +000056
57 <dependency>
58 <groupId>org.opendaylight.controller</groupId>
59 <artifactId>sal-binding-broker-impl</artifactId>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>org.opendaylight.controller</groupId>
64 <artifactId>sal-binding-broker-impl</artifactId>
65 <type>test-jar</type>
66 <classifier>tests</classifier>
67 <scope>test</scope>
68 </dependency>
Dan Timoney10b6a722018-02-22 17:22:31 -060069 <dependency>
70 <groupId>junit</groupId>
71 <artifactId>junit</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.testng</groupId>
76 <artifactId>testng</artifactId>
Dan Timoney10b6a722018-02-22 17:22:31 -060077 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.mockito</groupId>
81 <artifactId>mockito-core</artifactId>
82 <scope>test</scope>
83 </dependency>
84 </dependencies>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040085</project>