Merge "Bug 5916: He plugin: Wake up statistics collector thread if RPC fails."
[openflowplugin.git] / applications / forwardingrules-sync / 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-sync</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
19         <dependency>
20             <groupId>org.opendaylight.controller</groupId>
21             <artifactId>sal-binding-config</artifactId>
22         </dependency>
23
24         <dependency>
25             <groupId>org.opendaylight.controller</groupId>
26             <artifactId>sal-common-api</artifactId>
27         </dependency>
28
29         <dependency>
30             <groupId>org.opendaylight.controller.model</groupId>
31             <artifactId>model-inventory</artifactId>
32         </dependency>
33
34         <dependency>
35             <groupId>org.opendaylight.openflowplugin.model</groupId>
36             <artifactId>model-flow-service</artifactId>
37         </dependency>
38
39         <dependency>
40             <groupId>org.opendaylight.openflowplugin</groupId>
41             <artifactId>openflowplugin-common</artifactId>
42         </dependency>
43
44         <dependency>
45             <groupId>org.opendaylight.yangtools</groupId>
46             <artifactId>yang-common</artifactId>
47         </dependency>
48
49         <dependency>
50             <groupId>org.opendaylight.yangtools</groupId>
51             <artifactId>concepts</artifactId>
52         </dependency>
53
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>sal-common-util</artifactId>
57         </dependency>
58
59         <dependency>
60             <groupId>com.google.code.findbugs</groupId>
61             <artifactId>jsr305</artifactId>
62         </dependency>
63
64         <dependency>
65             <groupId>com.google.guava</groupId>
66             <artifactId>guava</artifactId>
67         </dependency>
68
69         <dependency>
70             <groupId>org.slf4j</groupId>
71             <artifactId>slf4j-api</artifactId>
72         </dependency>
73
74         <dependency>
75             <groupId>org.opendaylight.controller</groupId>
76             <artifactId>sal-binding-broker-impl</artifactId>
77             <scope>test</scope>
78         </dependency>
79
80         <dependency>
81             <groupId>org.opendaylight.controller</groupId>
82             <artifactId>sal-binding-broker-impl</artifactId>
83             <scope>test</scope>
84             <type>test-jar</type>
85         </dependency>
86
87         <dependency>
88             <groupId>junit</groupId>
89             <artifactId>junit</artifactId>
90         </dependency>
91
92         <dependency>
93             <groupId>org.mockito</groupId>
94             <artifactId>mockito-all</artifactId>
95             <scope>test</scope>
96         </dependency>
97
98         <dependency>
99             <groupId>org.slf4j</groupId>
100             <artifactId>slf4j-log4j12</artifactId>
101             <scope>test</scope>
102         </dependency>
103
104         <dependency>
105             <groupId>org.codehaus.sonar-plugins.java</groupId>
106             <artifactId>sonar-jacoco-listeners</artifactId>
107             <version>${sonar-jacoco-listeners.version}</version>
108             <scope>test</scope>
109         </dependency>
110     </dependencies>
111
112     <build>
113         <resources>
114             <resource>
115                 <filtering>true</filtering>
116                 <directory>src/main/resources</directory>
117             </resource>
118         </resources>
119
120         <plugins>
121             <plugin>
122                 <groupId>org.apache.felix</groupId>
123                 <artifactId>maven-bundle-plugin</artifactId>
124             </plugin>
125             <plugin>
126                 <groupId>org.opendaylight.yangtools</groupId>
127                 <artifactId>yang-maven-plugin</artifactId>
128             </plugin>
129         </plugins>
130     </build>
131
132     <scm>
133         <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
134         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
135         <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
136         <tag>HEAD</tag>
137     </scm>
138
139 </project>