e2948fd54e59818352d9eff4c51bec8d2ac9a293
[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"
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>sal-parent</artifactId>
7         <version>1.0-SNAPSHOT</version>
8     </parent>
9     <groupId>org.opendaylight.controller.md</groupId>
10     <artifactId>forwardingrules-manager</artifactId>
11     <packaging>bundle</packaging>
12     
13     <scm>
14         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
15         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
16         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
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       <version>1.0-SNAPSHOT</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>flow-management-compatibility</artifactId>
54       <version>1.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller.model</groupId>
58       <artifactId>model-flow-service</artifactId>
59       <version>1.0-SNAPSHOT</version>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller.model</groupId>
63       <artifactId>model-flow-management</artifactId>
64       <version>1.0-SNAPSHOT</version>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.yangtools</groupId>
68       <artifactId>yang-common</artifactId>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>sal-binding-broker-impl</artifactId>
73       <version>1.0-SNAPSHOT</version>
74       <scope>provided</scope>
75     </dependency>
76   </dependencies>
77 </project>