Enable checkstyle enforcement in openflowplugin-parent
[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"
3   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.openflowplugin</groupId>
7     <artifactId>applications</artifactId>
8     <version>0.7.0-SNAPSHOT</version>
9   </parent>
10   <groupId>org.opendaylight.openflowplugin.applications</groupId>
11   <artifactId>forwardingrules-manager</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.opendaylight.controller</groupId>
17       <artifactId>sal-binding-api</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.opendaylight.openflowplugin.model</groupId>
21       <artifactId>model-flow-service</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.openflowplugin</groupId>
25       <artifactId>openflowplugin-common</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.yangtools</groupId>
29       <artifactId>yang-common</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal-common-util</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.mdsal</groupId>
37       <artifactId>mdsal-singleton-common-api</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.openflowplugin</groupId>
41       <artifactId>openflowplugin-api</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.openflowplugin.applications</groupId>
45       <artifactId>reconciliation-framework</artifactId>
46       <version>0.7.0-SNAPSHOT</version>
47     </dependency>
48     <dependency>
49       <groupId>junit</groupId>
50       <artifactId>junit</artifactId>
51       <scope>test</scope>
52     </dependency>
53     <dependency>
54       <groupId>org.mockito</groupId>
55       <artifactId>mockito-core</artifactId>
56       <scope>test</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.opendaylight.controller</groupId>
60       <artifactId>sal-binding-broker-impl</artifactId>
61       <scope>test</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.opendaylight.controller</groupId>
65       <artifactId>sal-binding-broker-impl</artifactId>
66       <scope>test</scope>
67       <type>test-jar</type>
68     </dependency>
69     <dependency>
70       <groupId>org.opendaylight.openflowplugin</groupId>
71       <artifactId>openflowplugin-extension-api</artifactId>
72     </dependency>
73   </dependencies>
74
75   <scm>
76     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
77     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
78     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
79     <tag>HEAD</tag>
80   </scm>
81
82 </project>