Merge "Fixed for bug : 1171 - issue while creating subnet"
[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>sal-binding-api</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.controller.model</groupId>
24       <artifactId>model-flow-management</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.controller.model</groupId>
28       <artifactId>model-flow-service</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.yangtools</groupId>
32       <artifactId>yang-common</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.controller</groupId>
36       <artifactId>sal-binding-broker-impl</artifactId>
37       <scope>provided</scope>
38     </dependency>
39   </dependencies>
40
41   <build>
42     <plugins>
43       <plugin>
44         <groupId>org.apache.felix</groupId>
45         <artifactId>maven-bundle-plugin</artifactId>
46         <configuration>
47           <instructions>
48             <Bundle-Activator>org.opendaylight.controller.frm.FRMActivator</Bundle-Activator>
49           </instructions>
50         </configuration>
51       </plugin>
52     </plugins>
53   </build>
54
55   <scm>
56     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
57     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
58     <tag>HEAD</tag>
59     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
60   </scm>
61 </project>