Merge changes I057476f2,I5b8602e7
[controller.git] / opendaylight / md-sal / sal-common-impl / 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>sal-parent</artifactId>
7     <version>1.1-SNAPSHOT</version>
8   </parent>
9   <artifactId>sal-common-impl</artifactId>
10   <packaging>bundle</packaging>
11
12   <dependencies>
13     <dependency>
14       <groupId>com.google.guava</groupId>
15       <artifactId>guava</artifactId>
16     </dependency>
17     <dependency>
18       <groupId>org.opendaylight.controller</groupId>
19       <artifactId>sal-common-api</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>sal-common-util</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.yangtools</groupId>
27       <artifactId>yang-data-impl</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.yangtools</groupId>
31       <artifactId>yang-model-api</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>junit</groupId>
35       <artifactId>junit</artifactId>
36       <scope>test</scope>
37     </dependency>
38     <dependency>
39       <groupId>org.mockito</groupId>
40       <artifactId>mockito-all</artifactId>
41       <scope>test</scope>
42     </dependency>
43   </dependencies>
44
45   <build>
46     <plugins>
47       <plugin>
48         <groupId>org.apache.felix</groupId>
49         <artifactId>maven-bundle-plugin</artifactId>
50         <configuration>
51           <instructions>
52             <Export-Package>org.opendaylight.controller.md.sal.common.impl,
53                             org.opendaylight.controller.md.sal.common.impl.*</Export-Package>
54           </instructions>
55         </configuration>
56       </plugin>
57     </plugins>
58   </build>
59   <scm>
60     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
61     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
62     <tag>HEAD</tag>
63     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
64   </scm>
65
66 </project>