33de9c73057cad4e19b71ca22ac79366229fdfae
[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.1-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     <dependency>
43       <groupId>org.opendaylight.mdsal</groupId>
44       <artifactId>mdsal-singleton-common-api</artifactId>
45     </dependency>
46
47     <dependency>
48       <groupId>org.mockito</groupId>
49       <artifactId>mockito-all</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>sal-binding-broker-impl</artifactId>
55       <scope>test</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.opendaylight.controller</groupId>
59       <artifactId>sal-binding-broker-impl</artifactId>
60       <scope>test</scope>
61       <type>test-jar</type>
62     </dependency>
63   </dependencies>
64
65   <build>
66     <plugins>
67       <plugin>
68         <groupId>org.apache.felix</groupId>
69         <artifactId>maven-bundle-plugin</artifactId>
70       </plugin>
71       <plugin>
72         <groupId>org.opendaylight.yangtools</groupId>
73         <artifactId>yang-maven-plugin</artifactId>
74       </plugin>
75     </plugins>
76   </build>
77
78
79   <scm>
80     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
81     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
82     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
83     <tag>HEAD</tag>
84   </scm>
85
86 </project>