0f90ecac60e1f57307da4ee810cecbeb2a1a75d6
[controller.git] / opendaylight / md-sal / statistics-manager / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.controller</groupId>
5         <artifactId>sal-parent</artifactId>
6         <version>1.1-SNAPSHOT</version>
7     </parent>
8     <groupId>org.opendaylight.controller.md</groupId>
9     <artifactId>statistics-manager</artifactId>
10     <packaging>bundle</packaging>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:MD-SAL</url>
15       <tag>HEAD</tag>
16   </scm>
17
18     <dependencies>
19         <dependency>
20             <groupId>com.google.guava</groupId>
21             <artifactId>guava</artifactId>
22         </dependency>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>sal-binding-api</artifactId>
26             <version>1.1-SNAPSHOT</version>
27         </dependency>
28         <dependency>
29             <groupId>org.opendaylight.controller.model</groupId>
30             <artifactId>model-flow-statistics</artifactId>
31             <version>1.1-SNAPSHOT</version>
32         </dependency>
33         <dependency>
34             <groupId>org.opendaylight.controller.model</groupId>
35             <artifactId>model-flow-base</artifactId>
36             <version>1.1-SNAPSHOT</version>
37         </dependency>
38         <dependency>
39             <groupId>org.eclipse.xtend</groupId>
40             <artifactId>org.eclipse.xtend.lib</artifactId>
41         </dependency>
42     </dependencies>
43
44     <build>
45         <plugins>
46             <plugin>
47                 <groupId>org.apache.felix</groupId>
48                 <artifactId>maven-bundle-plugin</artifactId>
49                 <configuration>
50                     <instructions>
51                         <Bundle-Activator>org.opendaylight.controller.md.statistics.manager.StatisticsManagerActivator</Bundle-Activator>
52                         <Private-Package>org.opendaylight.controller.md.statistics.manager</Private-Package>
53                     </instructions>
54                 </configuration>
55             </plugin>
56             <plugin>
57                 <artifactId>maven-clean-plugin</artifactId>
58             </plugin>
59         </plugins>
60     </build>
61 </project>