Merge "Bug 509: Improve logging in InMemoryDataStore."
[controller.git] / opendaylight / md-sal / 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.controller</groupId>
6     <artifactId>sal-parent</artifactId>
7     <version>1.1-SNAPSHOT</version>
8   </parent>
9   <groupId>org.opendaylight.controller.md</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.eclipse.xtend</groupId>
25       <artifactId>org.eclipse.xtend.lib</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>sal-binding-api</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller.model</groupId>
33       <artifactId>model-flow-base</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller.model</groupId>
37       <artifactId>model-flow-statistics</artifactId>
38     </dependency>
39     <dependency>
40       <groupId>org.osgi</groupId>
41       <artifactId>org.osgi.core</artifactId>
42       <scope>provided</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.slf4j</groupId>
46       <artifactId>slf4j-log4j12</artifactId>
47       <version>${slf4j.version}</version>
48       <scope>test</scope>
49     </dependency>
50   </dependencies>
51
52   <build>
53     <plugins>
54       <plugin>
55         <groupId>org.apache.felix</groupId>
56         <artifactId>maven-bundle-plugin</artifactId>
57         <configuration>
58           <instructions>
59             <Bundle-Activator>org.opendaylight.controller.md.statistics.manager.StatisticsManagerActivator</Bundle-Activator>
60             <Private-Package>org.opendaylight.controller.md.statistics.manager</Private-Package>
61           </instructions>
62         </configuration>
63       </plugin>
64     </plugins>
65   </build>
66   <scm>
67     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
68     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
69     <tag>HEAD</tag>
70     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
71   </scm>
72 </project>