26010c7d26407a100b3fc08bb84ef8e30463f27a
[ccsdk/sli/northbound.git] / daexim-offsite-backup / 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.0-SNAPSHOT</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.sli.northbound</groupId>
13     <artifactId>daexim-offsite-backup-provider</artifactId>
14     <version>1.1.0-SNAPSHOT</version>
15     <packaging>bundle</packaging>
16
17     <name>ccsdk-sli-northbound :: daexim-offsite-backup :: ${project.artifactId}</name>
18
19     <dependencies>
20         <dependency>
21             <groupId>org.onap.ccsdk.sli.northbound</groupId>
22             <artifactId>daexim-offsite-backup-model</artifactId>
23             <version>${project.version}</version>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.controller</groupId>
27             <artifactId>sal-binding-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.opendaylight.controller</groupId>
31             <artifactId>sal-common-util</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller</groupId>
35             <artifactId>sal-test-model</artifactId>
36             <scope>test</scope>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.controller</groupId>
40             <artifactId>sal-binding-broker-impl</artifactId>
41             <scope>test</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>sal-binding-broker-impl</artifactId>
46             <type>test-jar</type>
47             <classifier>tests</classifier>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.apache.commons</groupId>
52             <artifactId>commons-lang3</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.onap.ccsdk.sli.core</groupId>
56             <artifactId>sli-common</artifactId>
57             <version>${sdnctl.sli.version}</version>
58         </dependency>
59         <dependency>
60             <groupId>org.onap.ccsdk.sli.core</groupId>
61             <artifactId>sli-provider</artifactId>
62             <version>${sdnctl.sli.version}</version>
63         </dependency>
64         <dependency>
65               <groupId>com.google.code.findbugs</groupId>
66               <artifactId>annotations</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>junit</groupId>
70             <artifactId>junit</artifactId>
71             <scope>test</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.mockito</groupId>
75             <artifactId>mockito-core</artifactId>
76             <scope>test</scope>
77         </dependency>
78     </dependencies>
79
80     <build>
81         <plugins>
82             <plugin>
83                 <groupId>org.apache.felix</groupId>
84                 <artifactId>maven-bundle-plugin</artifactId>
85                 <extensions>true</extensions>
86                 <configuration>
87                     <instructions>
88                         <Export-Package>org.opendaylight.controller.config.yang.config.daexim-offsite-backup_provider</Export-Package>
89                         <Import-Package>*</Import-Package>
90                     </instructions>
91                 </configuration>
92             </plugin>
93         </plugins>
94     </build>
95 </project>