Create a parent pom for md-sal sub-projects
[controller.git] / opendaylight / md-sal / sal-dom-broker-config / 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   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>mdsal-parent</artifactId>
7     <version>1.8.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>sal-dom-broker-config</artifactId>
12   <version>1.8.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.opendaylight.controller</groupId>
18       <artifactId>sal-dom-config</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>sal-broker-impl</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.mdsal.model</groupId>
26       <artifactId>ietf-yang-types-20130715</artifactId>
27     </dependency>
28   </dependencies>
29
30   <build>
31     <plugins>
32       <plugin>
33         <groupId>org.apache.felix</groupId>
34         <artifactId>maven-bundle-plugin</artifactId>
35         <extensions>true</extensions>
36         <configuration>
37           <instructions>
38             <Export-Package>
39                {local-packages},
40                org.opendaylight.controller.config.yang.md.sal.dom.impl,
41                org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.dom.impl.*
42              </Export-Package>
43           </instructions>
44         </configuration>
45       </plugin>
46     </plugins>
47   </build>
48
49   <scm>
50     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
51     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
52     <tag>HEAD</tag>
53     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
54   </scm>
55
56 </project>