Roll to next snapshot
[ccsdk/sli/northbound.git] / lcm / 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"
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>
5
6     <parent>
7         <groupId>org.onap.ccsdk.parent</groupId>
8         <artifactId>binding-parent</artifactId>
9         <version>1.1.1-SNAPSHOT</version>
10         <relativePath />
11     </parent>
12
13     <groupId>org.onap.ccsdk.sli.northbound</groupId>
14     <artifactId>lcm-provider</artifactId>
15     <version>0.3.1-SNAPSHOT</version>
16     <packaging>bundle</packaging>
17
18     <name>ccsdk-sli-northbound :: lcm :: ${project.artifactId}</name>
19
20     <dependencyManagement>
21         <dependencies>
22             <dependency>
23                 <groupId>org.opendaylight.controller</groupId>
24                 <artifactId>mdsal-artifacts</artifactId>
25                 <version>1.6.1</version>
26                 <type>pom</type>
27                 <scope>import</scope>
28             </dependency>
29         </dependencies>
30     </dependencyManagement>
31
32     <dependencies>
33         <dependency>
34             <groupId>org.onap.ccsdk.sli.northbound</groupId>
35             <artifactId>lcm-model</artifactId>
36             <version>${project.version}</version>
37         </dependency>
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
53         <dependency>
54             <groupId>org.onap.ccsdk.sli.core</groupId>
55             <artifactId>sli-common</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.onap.ccsdk.sli.core</groupId>
59             <artifactId>sli-provider</artifactId>
60         </dependency>
61
62         <dependency>
63             <groupId>org.opendaylight.controller</groupId>
64             <artifactId>sal-core-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.yangtools</groupId>
68             <artifactId>yang-data-impl</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>junit</groupId>
72             <artifactId>junit</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.testng</groupId>
77             <artifactId>testng</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.mockito</groupId>
82             <artifactId>mockito-core</artifactId>
83             <scope>test</scope>
84         </dependency>
85         <dependency>
86             <groupId>org.apache.derby</groupId>
87             <artifactId>derby</artifactId>
88             <version>10.12.1.1</version>
89             <scope>test</scope>
90         </dependency>
91     </dependencies>
92
93
94 </project>