Fix warnings about overriden versions
[controller.git] / opendaylight / md-sal / compatibility / inventory-topology-compatibility / 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>compatibility-parent</artifactId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <artifactId>inventory-topology-compatibility</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     <build>
18         <plugins>
19             <plugin>
20                 <groupId>org.apache.felix</groupId>
21                 <artifactId>maven-bundle-plugin</artifactId>
22                 <extensions>true</extensions>
23                 <configuration>
24                     <instructions>
25                         <Bundle-Name>Forwarding Rules Manager Adapter
26                             for MD-SAL</Bundle-Name>
27                     </instructions>
28                 </configuration>
29             </plugin>
30             <plugin>
31                 <groupId>org.eclipse.xtend</groupId>
32                 <artifactId>xtend-maven-plugin</artifactId>
33             </plugin>
34             <plugin>
35                 <artifactId>maven-clean-plugin</artifactId>
36             </plugin>
37         </plugins>
38     </build>
39
40     <dependencies>
41         <dependency>
42             <groupId>org.opendaylight.controller</groupId>
43             <artifactId>sal-common-util</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>org.opendaylight.controller</groupId>
47             <artifactId>sal-binding-api</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.controller</groupId>
51             <artifactId>switchmanager</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.opendaylight.controller</groupId>
55             <artifactId>topologymanager</artifactId>
56         </dependency>
57         <dependency>
58             <groupId>org.slf4j</groupId>
59             <artifactId>slf4j-api</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>com.google.guava</groupId>
63             <artifactId>guava</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>junit</groupId>
67             <artifactId>junit</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.mockito</groupId>
72             <artifactId>mockito-all</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.eclipse.xtend</groupId>
77             <artifactId>org.eclipse.xtend.lib</artifactId>
78         </dependency>
79         <dependency>
80             <groupId>org.opendaylight.controller.model</groupId>
81             <artifactId>model-flow-management</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller</groupId>
85             <artifactId>sal-binding-util</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.controller.model</groupId>
89             <artifactId>model-topology</artifactId>
90             <version>1.1-SNAPSHOT</version>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.controller</groupId>
94             <artifactId>forwardingrulesmanager</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.opendaylight.controller</groupId>
98             <artifactId>sal-compatibility</artifactId>
99         </dependency>
100     </dependencies>
101 </project>