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