blob: a5b8c17f720491a0c7eaae3d637e7bf6a61ac947 [file] [log] [blame]
Lathishb6fe5a12019-10-09 10:32:09 +01001<?xml version="1.0" encoding="UTF-8"?>
2<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">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>binding-parent</artifactId>
8 <version>1.4.3</version>
9 <relativePath/>
10 </parent>
11
12 <groupId>org.onap.sdnc.northbound</groupId>
13 <artifactId>generic-resource-api-provider</artifactId>
14 <version>1.7.3-SNAPSHOT</version>
15 <packaging>bundle</packaging>
16
17 <name>sdnc-northbound :: generic-resource-api :: ${project.artifactId}</name>
18
19 <dependencyManagement>
20 <dependencies>
21 <dependency>
22 <groupId>org.onap.ccsdk.sli.core</groupId>
23 <artifactId>sli-core-artifacts</artifactId>
24 <version>${ccsdk.sli.core.version}</version>
25 <type>pom</type>
26 <scope>import</scope>
27 </dependency>
28 </dependencies>
29 </dependencyManagement>
30 <dependencies>
31 <dependency>
32 <groupId>org.onap.sdnc.northbound</groupId>
33 <artifactId>generic-resource-api-model</artifactId>
34 <version>${project.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.apache.commons</groupId>
38 <artifactId>commons-lang3</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>org.onap.ccsdk.sli.core</groupId>
42 <artifactId>sli-common</artifactId>
43 </dependency>
44 <dependency>
45 <groupId>org.onap.ccsdk.sli.core</groupId>
46 <artifactId>sli-provider</artifactId>
47 </dependency>
48
49 <dependency>
50 <groupId>org.opendaylight.controller</groupId>
51 <artifactId>sal-binding-api</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.opendaylight.controller</groupId>
56 <artifactId>sal-common-util</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.opendaylight.controller</groupId>
60 <artifactId>sal-test-model</artifactId>
61 <scope>test</scope>
62 </dependency>
63
64
65 <dependency>
66 <groupId>org.opendaylight.controller</groupId>
67 <artifactId>sal-binding-broker-impl</artifactId>
68 <scope>test</scope>
69 </dependency>
70 <dependency>
71 <groupId>org.opendaylight.controller</groupId>
72 <artifactId>sal-binding-broker-impl</artifactId>
73 <type>test-jar</type>
74 <classifier>tests</classifier>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
78 <groupId>junit</groupId>
79 <artifactId>junit</artifactId>
80 <scope>test</scope>
81 </dependency>
82 <dependency>
83 <groupId>org.mockito</groupId>
84 <artifactId>mockito-core</artifactId>
85 <version>1.10.19</version>
86 <scope>test</scope>
87 </dependency>
88 </dependencies>
89</project>