Merge "Unification of broker concepts implementations"
[controller.git] / opendaylight / md-sal / sal-common-impl / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   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>sal-parent</artifactId>
7     <version>1.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-common-impl</artifactId>
10   <packaging>bundle</packaging>
11   <scm>
12     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
15   </scm>
16
17   <dependencies>
18     <dependency>
19       <groupId>org.opendaylight.controller</groupId>
20       <artifactId>sal-common-api</artifactId>
21       <version>1.0-SNAPSHOT</version>
22     </dependency>
23     <dependency>
24       <groupId>com.google.guava</groupId>
25       <artifactId>guava</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.eclipse.xtend</groupId>
29       <artifactId>org.eclipse.xtend.lib</artifactId>
30     </dependency>
31   </dependencies>
32
33   <build>
34     <plugins>
35       <plugin>
36         <groupId>org.apache.felix</groupId>
37         <artifactId>maven-bundle-plugin</artifactId>
38         <configuration>
39           <instructions>
40             <Export-Package>
41                 org.opendaylight.controller.md.sal.common.impl,
42                 org.opendaylight.controller.md.sal.common.impl.*
43             </Export-Package>
44           </instructions>
45         </configuration>
46       </plugin>
47     </plugins>
48   </build>
49
50 </project>