Added method for getting non-cached flow statistics
[controller.git] / opendaylight / statisticsmanager / implementation / 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>commons.opendaylight</artifactId>
7     <version>1.4.1-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>statisticsmanager.implementation</artifactId>
18   <version>0.4.1-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20   <properties>
21     <!-- Sonar properties using jacoco to retrieve integration test results -->
22     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
23     <sonar.jacoco.reportpath>target/jacoco.exec</sonar.jacoco.reportpath>
24     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
25   </properties>
26   <build>
27     <pluginManagement>
28       <plugins>
29         <plugin>
30           <groupId>org.jacoco</groupId>
31           <artifactId>jacoco-maven-plugin</artifactId>
32           <version>${jacoco.version}</version>
33         </plugin>
34       </plugins>
35     </pluginManagement>
36     <plugins>
37       <plugin>
38         <groupId>org.apache.felix</groupId>
39         <artifactId>maven-bundle-plugin</artifactId>
40         <version>${bundle.plugin.version}</version>
41         <extensions>true</extensions>
42         <configuration>
43           <instructions>
44             <Import-Package>
45               org.opendaylight.controller.clustering.services,
46               org.opendaylight.controller.containermanager,
47               org.opendaylight.controller.sal.core,
48               org.opendaylight.controller.sal.flowprogrammer,
49               org.opendaylight.controller.sal.reader,
50               org.opendaylight.controller.sal.utils,
51               org.slf4j,
52               org.opendaylight.controller.sal.inventory,
53               org.opendaylight.controller.sal.match,
54               org.opendaylight.controller.sal.connection,
55               org.opendaylight.controller.switchmanager,
56               org.opendaylight.controller.statisticsmanager,
57               org.opendaylight.controller.forwardingrulesmanager,
58               org.opendaylight.controller.connectionmanager,
59               org.apache.felix.dm
60             </Import-Package>
61             <Bundle-Activator>
62               org.opendaylight.controller.statisticsmanager.internal.Activator
63             </Bundle-Activator>
64             <Export-Package>
65             </Export-Package>
66           </instructions>
67           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
68         </configuration>
69       </plugin>
70       <plugin>
71         <groupId>org.jacoco</groupId>
72         <artifactId>jacoco-maven-plugin</artifactId>
73         <configuration>
74           <includes>org.opendaylight.controller.*</includes>
75         </configuration>
76         <executions>
77           <execution>
78             <id>pre-test</id>
79             <goals>
80               <goal>prepare-agent</goal>
81             </goals>
82           </execution>
83           <execution>
84             <id>post-test</id>
85             <phase>test</phase>
86             <goals>
87               <goal>report</goal>
88             </goals>
89           </execution>
90         </executions>
91       </plugin>
92     </plugins>
93   </build>
94   <dependencies>
95     <dependency>
96       <groupId>org.opendaylight.controller</groupId>
97       <artifactId>statisticsmanager</artifactId>
98       <version>0.5.0-SNAPSHOT</version>
99     </dependency>
100     <dependency>
101       <groupId>org.opendaylight.controller</groupId>
102       <artifactId>sal</artifactId>
103       <version>0.5.1-SNAPSHOT</version>
104     </dependency>
105     <dependency>
106       <groupId>org.opendaylight.controller</groupId>
107       <artifactId>containermanager</artifactId>
108       <version>0.5.1-SNAPSHOT</version>
109     </dependency>
110     <dependency>
111       <groupId>org.opendaylight.controller</groupId>
112       <artifactId>forwardingrulesmanager</artifactId>
113       <version>0.4.1-SNAPSHOT</version>
114     </dependency>
115     <dependency>
116       <groupId>org.opendaylight.controller</groupId>
117       <artifactId>clustering.services</artifactId>
118       <version>0.4.1-SNAPSHOT</version>
119     </dependency>
120     <dependency>
121       <groupId>org.opendaylight.controller</groupId>
122       <artifactId>connectionmanager</artifactId>
123       <version>0.1.1-SNAPSHOT</version>
124     </dependency>
125     <dependency>
126       <groupId>junit</groupId>
127       <artifactId>junit</artifactId>
128     </dependency>
129   </dependencies>
130 </project>