Bug 499: Added support for old DOM Broker APIs.
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal-parent</artifactId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <artifactId>sal-common-impl</artifactId>
9     <packaging>bundle</packaging>
10     <scm>
11         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
14       <tag>HEAD</tag>
15   </scm>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.opendaylight.controller</groupId>
20             <artifactId>sal-common-api</artifactId>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.controller</groupId>
24             <artifactId>sal-common-util</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>com.google.guava</groupId>
28             <artifactId>guava</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.eclipse.xtend</groupId>
32             <artifactId>org.eclipse.xtend.lib</artifactId>
33         </dependency>
34         <dependency>
35         <groupId>org.opendaylight.yangtools</groupId>
36         <artifactId>yang-data-impl</artifactId>
37         </dependency>
38         <dependency>
39             <groupId>org.opendaylight.yangtools</groupId>
40             <artifactId>yang-model-api</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>junit</groupId>
44             <artifactId>junit</artifactId>
45             <scope>test</scope>
46         </dependency>
47         <dependency>
48             <groupId>org.mockito</groupId>
49             <artifactId>mockito-all</artifactId>
50             <scope>test</scope>
51         </dependency>
52     </dependencies>
53
54     <build>
55         <plugins>
56             <plugin>
57                 <groupId>org.apache.felix</groupId>
58                 <artifactId>maven-bundle-plugin</artifactId>
59                 <configuration>
60                     <instructions>
61                         <Export-Package>
62                             org.opendaylight.controller.md.sal.common.impl,
63                             org.opendaylight.controller.md.sal.common.impl.*
64                         </Export-Package>
65                     </instructions>
66                 </configuration>
67             </plugin>
68             <plugin>
69                 <groupId>org.eclipse.xtend</groupId>
70                 <artifactId>xtend-maven-plugin</artifactId>
71             </plugin>
72         </plugins>
73     </build>
74
75 </project>