Bug 2945: Fix read failures in StatAbstractListenCommit
[openflowplugin.git] / applications / statistics-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.1.0-SNAPSHOT</version>
8   </parent>
9   <groupId>org.opendaylight.openflowplugin.applications</groupId>
10   <artifactId>statistics-manager</artifactId>
11   <packaging>bundle</packaging>
12
13   <dependencies>
14     <dependency>
15       <groupId>com.google.guava</groupId>
16       <artifactId>guava</artifactId>
17     </dependency>
18
19     <dependency>
20       <groupId>junit</groupId>
21       <artifactId>junit</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>sal-binding-broker-impl</artifactId>
26       <scope>test</scope>
27     </dependency>
28     <dependency>
29       <groupId>org.opendaylight.controller</groupId>
30       <artifactId>sal-binding-broker-impl</artifactId>
31       <version>${mdsal.version}</version>
32       <scope>test</scope>
33       <type>test-jar</type>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>sal-binding-api</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.opendaylight.openflowplugin.model</groupId>
41       <artifactId>model-flow-base</artifactId>
42     </dependency>
43     <dependency>
44       <groupId>org.opendaylight.openflowplugin.model</groupId>
45       <artifactId>model-flow-statistics</artifactId>
46     </dependency>
47     <dependency>
48       <groupId>org.osgi</groupId>
49       <artifactId>org.osgi.core</artifactId>
50       <scope>provided</scope>
51     </dependency>
52       <dependency>
53           <groupId>org.opendaylight.controller</groupId>
54           <artifactId>sal-binding-config</artifactId>
55       </dependency>
56       <dependency>
57           <groupId>org.opendaylight.controller</groupId>
58           <artifactId>config-api</artifactId>
59       </dependency>
60     <dependency>
61       <groupId>org.slf4j</groupId>
62       <artifactId>slf4j-log4j12</artifactId>
63       <scope>test</scope>
64     </dependency>
65     <dependency>
66       <groupId>org.mockito</groupId>
67       <artifactId>mockito-all</artifactId>
68       <scope>test</scope>
69     </dependency>
70   </dependencies>
71
72   <build>
73     <plugins>
74         <plugin>
75             <groupId>org.apache.felix</groupId>
76             <artifactId>maven-bundle-plugin</artifactId>
77             <configuration>
78                 <instructions>
79                     <Import-Package>*</Import-Package>
80                 </instructions>
81             </configuration>
82         </plugin>
83         <plugin>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-maven-plugin</artifactId>
86         </plugin>
87     </plugins>
88   </build>
89
90
91   <scm>
92     <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
93     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
94     <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
95     <tag>HEAD</tag>
96   </scm>
97
98 </project>