Create a parent pom for md-sal sub-projects
[controller.git] / opendaylight / md-sal / sal-binding-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-binding-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-binding-api</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.opendaylight.controller</groupId>
22       <artifactId>sal-dom-config</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.opendaylight.controller</groupId>
26       <artifactId>sal-binding-broker-impl</artifactId>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.mdsal</groupId>
30       <artifactId>mdsal-binding-dom-codec</artifactId>
31     </dependency>
32     <dependency>
33       <groupId>org.opendaylight.mdsal.model</groupId>
34       <artifactId>ietf-yang-types-20130715</artifactId>
35     </dependency>
36   </dependencies>
37
38   <build>
39     <plugins>
40       <plugin>
41         <groupId>org.apache.felix</groupId>
42         <artifactId>maven-bundle-plugin</artifactId>
43         <extensions>true</extensions>
44         <configuration>
45           <instructions>
46             <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
47             <Export-Package>
48                             {local-packages},
49                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.md.sal.binding.impl.rev131028.*,
50                             org.opendaylight.controller.config.yang.md.sal.binding.impl
51             </Export-Package>
52           </instructions>
53         </configuration>
54       </plugin>
55     </plugins>
56   </build>
57
58   <scm>
59     <connection>scm:git:http://git.opendaylight.org/gerrit/controller.git</connection>
60     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
61     <tag>HEAD</tag>
62     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
63   </scm>
64
65 </project>