blob: 1722912ceda6535ea65657c11ad96a46676fc26a [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">
4 <modelVersion>4.0.0</modelVersion>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -04005
Dan Timoney10b6a722018-02-22 17:22:31 -06006 <parent>
7 <groupId>org.onap.ccsdk.parent</groupId>
8 <artifactId>binding-parent</artifactId>
9 <version>1.0.1-SNAPSHOT</version>
10 <relativePath />
11 </parent>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040012
Dan Timoney10b6a722018-02-22 17:22:31 -060013 <groupId>org.onap.ccsdk.sli.northbound</groupId>
14 <artifactId>dataChange-provider</artifactId>
15 <version>0.2.1-SNAPSHOT</version>
16 <packaging>bundle</packaging>
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040017
Dan Timoney10b6a722018-02-22 17:22:31 -060018 <name>ccsdk-sli-northbound :: dataChange :: ${project.artifactId}</name>
shashikanth20806dd2017-10-03 16:58:51 +053019
Dan Timoney10b6a722018-02-22 17:22:31 -060020 <dependencies>
21 <dependency>
22 <groupId>org.onap.ccsdk.sli.northbound</groupId>
23 <artifactId>dataChange-model</artifactId>
24 <version>${project.version}</version>
25 </dependency>
26 <dependency>
27 <groupId>org.opendaylight.controller</groupId>
28 <artifactId>sal-binding-config</artifactId>
29 </dependency>
shashikanth20806dd2017-10-03 16:58:51 +053030
Dan Timoney10b6a722018-02-22 17:22:31 -060031 <dependency>
32 <groupId>org.opendaylight.controller</groupId>
33 <artifactId>sal-binding-api</artifactId>
34 </dependency>
35 <dependency>
36 <groupId>org.onap.ccsdk.sli.core</groupId>
37 <artifactId>sli-common</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.onap.ccsdk.sli.core</groupId>
41 <artifactId>sli-provider</artifactId>
42 </dependency>
43
44 <dependency>
45 <groupId>org.opendaylight.controller</groupId>
46 <artifactId>sal-test-model</artifactId>
47 <scope>test</scope>
48 </dependency>
49 <dependency>
50 <groupId>org.opendaylight.netconf</groupId>
51 <artifactId>sal-rest-connector</artifactId>
52 <scope>test</scope>
53 </dependency>
54
55 <dependency>
56 <groupId>org.opendaylight.controller</groupId>
57 <artifactId>sal-binding-broker-impl</artifactId>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.opendaylight.controller</groupId>
62 <artifactId>sal-binding-broker-impl</artifactId>
63 <type>test-jar</type>
64 <classifier>tests</classifier>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>junit</groupId>
69 <artifactId>junit</artifactId>
70 <scope>test</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.testng</groupId>
74 <artifactId>testng</artifactId>
75 <version>6.11</version>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.mockito</groupId>
80 <artifactId>mockito-core</artifactId>
81 <scope>test</scope>
82 </dependency>
83 </dependencies>
84
85
Dan Timoneyea5bf0a2017-07-18 20:32:15 -040086</project>