9bd63d3c3bb5268d8d6e5142dd38da888a90b906
[controller.git] / opendaylight / md-sal / forwardingrules-manager / 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>sal-parent</artifactId>
7     <version>1.1-SNAPSHOT</version>
8   </parent>
9   <groupId>org.opendaylight.controller.md</groupId>
10   <artifactId>forwardingrules-manager</artifactId>
11   <packaging>bundle</packaging>
12
13   <dependencies>
14     <dependency>
15       <groupId>junit</groupId>
16       <artifactId>junit</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.opendaylight.controller</groupId>
20       <artifactId>flow-management-compatibility</artifactId>
21       <version>1.1-SNAPSHOT</version>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal-binding-api</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller.model</groupId>
29       <artifactId>model-flow-management</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller.model</groupId>
33       <artifactId>model-flow-service</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.yangtools</groupId>
37       <artifactId>yang-common</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.controller</groupId>
41       <artifactId>sal-binding-broker-impl</artifactId>
42       <scope>provided</scope>
43     </dependency>
44   </dependencies>
45
46   <build>
47     <plugins>
48       <plugin>
49         <groupId>org.apache.felix</groupId>
50         <artifactId>maven-bundle-plugin</artifactId>
51         <configuration>
52           <instructions>
53             <Bundle-Activator>org.opendaylight.controller.frm.FRMActivator</Bundle-Activator>
54           </instructions>
55         </configuration>
56       </plugin>
57     </plugins>
58   </build>
59
60   <scm>
61     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
62     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
63     <tag>HEAD</tag>
64     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
65   </scm>
66 </project>