Merge "increased test coverage"
[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"
2     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.0-SNAPSHOT</version>
8     </parent>
9     <artifactId>inventory-topology-compatibility</artifactId>
10     <packaging>bundle</packaging>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
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             <version>1.0-SNAPSHOT</version>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>sal-binding-api</artifactId>
49             <version>1.0-SNAPSHOT</version>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>switchmanager</artifactId>
54             <version>0.7.0-SNAPSHOT</version>
55         </dependency>
56         <dependency>
57             <groupId>org.opendaylight.controller</groupId>
58             <artifactId>topologymanager</artifactId>
59             <version>0.4.1-SNAPSHOT</version>
60         </dependency>
61         <dependency>
62             <groupId>org.slf4j</groupId>
63             <artifactId>slf4j-api</artifactId>
64         </dependency>
65         <dependency>
66             <groupId>com.google.guava</groupId>
67             <artifactId>guava</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>junit</groupId>
71             <artifactId>junit</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.mockito</groupId>
76             <artifactId>mockito-all</artifactId>
77             <scope>test</scope>
78         </dependency>
79         <dependency>
80             <groupId>org.eclipse.xtend</groupId>
81             <artifactId>org.eclipse.xtend.lib</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.controller.model</groupId>
85             <artifactId>model-flow-management</artifactId>
86             <version>1.0-SNAPSHOT</version>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.controller</groupId>
90             <artifactId>sal-binding-util</artifactId>
91             <version>1.0-SNAPSHOT</version>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.controller.model</groupId>
95             <artifactId>model-topology</artifactId>
96             <version>1.0-SNAPSHOT</version>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.controller</groupId>
100             <artifactId>forwardingrulesmanager</artifactId>
101             <version>0.5.0-SNAPSHOT</version>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.controller</groupId>
105             <artifactId>sal-compatibility</artifactId>
106             <version>1.0-SNAPSHOT</version>
107         </dependency>
108     </dependencies>
109 </project>