a95eeca7ac6bcca0b0cd12c23ad0e8c03f774e87
[openflowplugin.git] / applications / 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.openflowplugin</groupId>
6     <artifactId>applications</artifactId>
7     <version>0.3.0-SNAPSHOT</version>
8   </parent>
9   <groupId>org.opendaylight.openflowplugin.applications</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</groupId>
24       <artifactId>sal-binding-config</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.openflowplugin.model</groupId>
28       <artifactId>model-flow-service</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.opendaylight.openflowplugin</groupId>
32       <artifactId>openflowplugin-common</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.opendaylight.yangtools</groupId>
36       <artifactId>yang-common</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.controller</groupId>
40       <artifactId>sal-common-util</artifactId>
41     </dependency>
42
43     <dependency>
44       <groupId>org.opendaylight.controller</groupId>
45       <artifactId>sal-binding-broker-impl</artifactId>
46       <scope>test</scope>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.controller</groupId>
50       <artifactId>sal-binding-broker-impl</artifactId>
51       <scope>test</scope>
52       <type>test-jar</type>
53     </dependency>
54   </dependencies>
55
56   <build>
57     <plugins>
58       <plugin>
59         <groupId>org.apache.felix</groupId>
60         <artifactId>maven-bundle-plugin</artifactId>
61       </plugin>
62       <plugin>
63         <groupId>org.opendaylight.yangtools</groupId>
64         <artifactId>yang-maven-plugin</artifactId>
65       </plugin>
66     </plugins>
67   </build>
68
69
70   <scm>
71     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
72     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
73     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
74     <tag>HEAD</tag>
75   </scm>
76
77 </project>