Fix warnings about overriden versions
[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>junit</groupId>
36             <artifactId>junit</artifactId>
37             <scope>test</scope>
38         </dependency>
39         <dependency>
40             <groupId>org.mockito</groupId>
41             <artifactId>mockito-all</artifactId>
42             <scope>test</scope>
43         </dependency>
44     </dependencies>
45
46     <build>
47         <plugins>
48             <plugin>
49                 <groupId>org.apache.felix</groupId>
50                 <artifactId>maven-bundle-plugin</artifactId>
51                 <configuration>
52                     <instructions>
53                         <Export-Package>
54                             org.opendaylight.controller.md.sal.common.impl,
55                             org.opendaylight.controller.md.sal.common.impl.*
56                         </Export-Package>
57                     </instructions>
58                 </configuration>
59             </plugin>
60             <plugin>
61                 <groupId>org.eclipse.xtend</groupId>
62                 <artifactId>xtend-maven-plugin</artifactId>
63             </plugin>
64         </plugins>
65     </build>
66
67 </project>