Merge changes I393151af,I0a302cde
[controller.git] / opendaylight / md-sal / forwardingrules-manager / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal-parent</artifactId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <groupId>org.opendaylight.controller.md</groupId>
9     <artifactId>forwardingrules-manager</artifactId>
10     <packaging>bundle</packaging>
11     
12     <scm>
13         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
14         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
15         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
16       <tag>HEAD</tag>
17   </scm>
18   
19          <build>
20         <plugins>
21             <plugin>
22                 <groupId>org.apache.felix</groupId>
23                 <artifactId>maven-bundle-plugin</artifactId>
24                 <configuration>
25                     <instructions>
26                         <Bundle-Activator>org.opendaylight.controller.frm.FRMActivator</Bundle-Activator>
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   
41   <dependencies>
42     <dependency>
43       <groupId>junit</groupId>
44       <artifactId>junit</artifactId>
45     </dependency>    
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal-binding-api</artifactId>
49     </dependency>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>flow-management-compatibility</artifactId>
53       <version>1.1-SNAPSHOT</version>
54     </dependency>
55     <dependency>
56       <groupId>org.opendaylight.controller.model</groupId>
57       <artifactId>model-flow-service</artifactId>
58     </dependency>
59     <dependency>
60       <groupId>org.opendaylight.controller.model</groupId>
61       <artifactId>model-flow-management</artifactId>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.yangtools</groupId>
65       <artifactId>yang-common</artifactId>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.controller</groupId>
69       <artifactId>sal-binding-broker-impl</artifactId>
70       <scope>provided</scope>
71     </dependency>
72   </dependencies>
73 </project>