2721780d2c148d51dbb9a83b492c462cd926b245
[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.5.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>org.opendaylight.controller</groupId>
16       <artifactId>sal-binding-api</artifactId>
17     </dependency>
18     <dependency>
19       <groupId>org.opendaylight.controller</groupId>
20       <artifactId>sal-binding-config</artifactId>
21     </dependency>
22     <dependency>
23       <groupId>org.opendaylight.openflowplugin.model</groupId>
24       <artifactId>model-flow-service</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.opendaylight.openflowplugin</groupId>
28       <artifactId>openflowplugin-common</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-common-util</artifactId>
37     </dependency>
38     <dependency>
39       <groupId>org.opendaylight.mdsal</groupId>
40       <artifactId>mdsal-singleton-common-api</artifactId>
41     </dependency>
42     <dependency>
43       <groupId>org.opendaylight.openflowplugin</groupId>
44       <artifactId>openflowplugin-api</artifactId>
45     </dependency>
46     <dependency>
47       <groupId>junit</groupId>
48       <artifactId>junit</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.mockito</groupId>
53       <artifactId>mockito-core</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal-binding-broker-impl</artifactId>
59       <scope>test</scope>
60     </dependency>
61     <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>sal-binding-broker-impl</artifactId>
64       <scope>test</scope>
65       <type>test-jar</type>
66     </dependency>
67     <dependency>
68       <groupId>org.opendaylight.openflowplugin</groupId>
69       <artifactId>openflowplugin-extension-onf</artifactId>
70     </dependency>
71   </dependencies>
72
73   <build>
74     <plugins>
75       <plugin>
76         <groupId>org.apache.felix</groupId>
77         <artifactId>maven-bundle-plugin</artifactId>
78       </plugin>
79       <plugin>
80         <groupId>org.opendaylight.yangtools</groupId>
81         <artifactId>yang-maven-plugin</artifactId>
82       </plugin>
83     </plugins>
84   </build>
85
86   <scm>
87     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
88     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
89     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
90     <tag>HEAD</tag>
91   </scm>
92
93 </project>