Roll to initial Dublin snapshot
[sdnc/northbound.git] / generic-resource-api / provider / pom.xml
1 <?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.2.0-SNAPSHOT</version>
9         <relativePath />
10     </parent>
11
12     <groupId>org.onap.sdnc.northbound</groupId>
13     <artifactId>generic-resource-api-provider</artifactId>
14     <version>1.5.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <name>sdnc-northbound :: generic-resource-api :: ${project.artifactId}</name>
18
19     <dependencies>
20         <dependency>
21             <groupId>org.onap.sdnc.northbound</groupId>
22             <artifactId>generic-resource-api-model</artifactId>
23             <version>${project.version}</version>
24         </dependency>
25         <dependency>
26             <groupId>org.apache.commons</groupId>
27             <artifactId>commons-lang3</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.onap.ccsdk.sli.core</groupId>
31             <artifactId>sli-common</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.onap.ccsdk.sli.core</groupId>
35             <artifactId>sli-provider</artifactId>
36         </dependency>
37
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>sal-binding-config</artifactId>
41         </dependency>
42
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>sal-binding-api</artifactId>
46         </dependency>
47
48         <dependency>
49             <groupId>org.opendaylight.controller</groupId>
50             <artifactId>sal-common-util</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.opendaylight.controller</groupId>
54             <artifactId>sal-test-model</artifactId>
55             <scope>test</scope>
56         </dependency>
57
58
59         <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>sal-binding-broker-impl</artifactId>
62             <scope>test</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.controller</groupId>
66             <artifactId>sal-binding-broker-impl</artifactId>
67             <type>test-jar</type>
68             <classifier>tests</classifier>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>junit</groupId>
73             <artifactId>junit</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.mockito</groupId>
78             <artifactId>mockito-core</artifactId>
79             <scope>test</scope>
80         </dependency>
81     </dependencies>
82 </project>