7338325651180d4309ac9e3fe7f6f4bc4b163321
[sdnc/northbound.git] / vnfapi / 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>2.1.1-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.sdnc.northbound</groupId>
13     <artifactId>vnfapi-provider</artifactId>
14     <version>2.0.1-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <name>sdnc-northbound :: vnfapi :: ${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>vnfapi-model</artifactId>
34             <version>${project.version}</version>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.controller</groupId>
38             <artifactId>sal-binding-api</artifactId>
39         </dependency>
40         <dependency>
41             <groupId>org.opendaylight.controller</groupId>
42             <artifactId>sal-common-util</artifactId>
43         </dependency>
44         <dependency>
45             <groupId>org.onap.ccsdk.sli.core</groupId>
46             <artifactId>sli-common</artifactId>
47         </dependency>
48         <dependency>
49             <groupId>org.onap.ccsdk.sli.core</groupId>
50             <artifactId>sli-provider</artifactId>
51         </dependency>
52
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>sal-test-model</artifactId>
56             <scope>test</scope>
57         </dependency>
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
72
73         <dependency>
74             <groupId>junit</groupId>
75             <artifactId>junit</artifactId>
76             <scope>test</scope>
77         </dependency>
78         <dependency>
79             <groupId>org.mockito</groupId>
80             <artifactId>mockito-core</artifactId>
81             <version>1.10.19</version>
82             <scope>test</scope>
83         </dependency>
84         <dependency>
85             <groupId>org.powermock</groupId>
86             <artifactId>powermock-api-mockito</artifactId>
87             <scope>test</scope>
88         </dependency>
89         <dependency>
90             <groupId>org.powermock</groupId>
91             <artifactId>powermock-module-junit4</artifactId>
92             <scope>test</scope>
93         </dependency>
94     </dependencies>
95 </project>