Added DELETE support for Bridge and Port resources
[controller.git] / opendaylight / md-sal / compatibility / flow-management-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>flow-management-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 for MD-SAL</Bundle-Name>
26           </instructions>
27         </configuration>
28       </plugin>
29       <plugin>
30         <groupId>org.eclipse.xtend</groupId>
31         <artifactId>xtend-maven-plugin</artifactId>
32       </plugin>
33       <plugin>
34         <artifactId>maven-clean-plugin</artifactId>
35       </plugin>
36     </plugins>
37   </build>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-common-util</artifactId>
43       <version>1.0-SNAPSHOT</version>
44     </dependency>
45     <dependency>
46       <groupId>org.opendaylight.controller</groupId>
47       <artifactId>sal-binding-api</artifactId>
48       <version>1.0-SNAPSHOT</version>
49     </dependency>
50     <dependency>
51       <groupId>org.slf4j</groupId>
52       <artifactId>slf4j-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>com.google.guava</groupId>
56       <artifactId>guava</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>junit</groupId>
60       <artifactId>junit</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.mockito</groupId>
65       <artifactId>mockito-all</artifactId>
66       <scope>test</scope>
67     </dependency>
68     <dependency>
69       <groupId>org.eclipse.xtend</groupId>
70       <artifactId>org.eclipse.xtend.lib</artifactId>
71     </dependency>
72     <dependency>
73       <groupId>org.opendaylight.controller.model</groupId>
74       <artifactId>model-flow-management</artifactId>
75       <version>1.0-SNAPSHOT</version>
76     </dependency>
77     <dependency>
78       <groupId>org.opendaylight.controller</groupId>
79       <artifactId>forwardingrulesmanager</artifactId>
80       <version>0.4.1-SNAPSHOT</version>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.controller</groupId>
84       <artifactId>sal-compatibility</artifactId>
85       <version>1.0-SNAPSHOT</version>
86     </dependency>
87
88   </dependencies>
89 </project>