Merge "Fixed typo in SnapshotBackedWriteTransaction class"
[controller.git] / opendaylight / md-sal / compatibility / flow-management-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>flow-management-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.opendaylight.controller</groupId>
19       <artifactId>forwardingrulesmanager</artifactId>
20     </dependency>
21     <dependency>
22       <groupId>org.opendaylight.controller</groupId>
23       <artifactId>sal-binding-api</artifactId>
24     </dependency>
25     <dependency>
26       <groupId>org.opendaylight.controller</groupId>
27       <artifactId>sal-common-util</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.opendaylight.controller</groupId>
31       <artifactId>sal-compatibility</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.controller.model</groupId>
35       <artifactId>model-flow-management</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.slf4j</groupId>
39       <artifactId>slf4j-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>junit</groupId>
43       <artifactId>junit</artifactId>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.mockito</groupId>
48       <artifactId>mockito-all</artifactId>
49       <scope>test</scope>
50     </dependency>
51
52   </dependencies>
53
54   <build>
55     <plugins>
56       <plugin>
57         <groupId>org.apache.felix</groupId>
58         <artifactId>maven-bundle-plugin</artifactId>
59         <extensions>true</extensions>
60         <configuration>
61           <instructions>
62             <Bundle-Name>Forwarding Rules Manager Adapter for MD-SAL</Bundle-Name>
63           </instructions>
64         </configuration>
65       </plugin>
66     </plugins>
67   </build>
68   <scm>
69     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
70     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
71     <tag>HEAD</tag>
72     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
73   </scm>
74 </project>