Merge "Refactor frontend JS"
[controller.git] / opendaylight / statisticsmanager / 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.0-SNAPSHOT</version>
8     <relativePath>../commons/opendaylight</relativePath>
9   </parent>
10
11   <groupId>org.opendaylight.controller</groupId>
12   <artifactId>statisticsmanager</artifactId>
13   <version>0.4.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15
16   <build>
17     <plugins>
18       <plugin>
19                 <groupId>org.apache.felix</groupId>
20                 <artifactId>maven-bundle-plugin</artifactId>
21                 <version>2.3.6</version>
22                 <extensions>true</extensions>
23                 <configuration>
24                   <instructions>
25                     <Import-Package>
26                         org.opendaylight.controller.forwardingrulesmanager,
27                                 org.opendaylight.controller.containermanager,
28                                 org.opendaylight.controller.sal.core,
29                                 org.opendaylight.controller.sal.flowprogrammer,
30                                 org.slf4j,
31                                 org.opendaylight.controller.sal.reader,
32                                 org.apache.felix.dm           
33                 </Import-Package>
34                         <Bundle-Activator>
35                                 org.opendaylight.controller.statisticsmanager.internal.Activator
36                         </Bundle-Activator>
37                         <Export-Package>
38                                 org.opendaylight.controller.statisticsmanager
39                 </Export-Package>
40                   </instructions>
41                 </configuration>
42       </plugin>
43     </plugins>
44   </build>
45   <dependencies>
46     <dependency>
47       <groupId>org.opendaylight.controller</groupId>
48       <artifactId>sal</artifactId>
49       <version>0.4.0-SNAPSHOT</version>
50     </dependency>
51     <dependency>
52       <groupId>org.opendaylight.controller</groupId>
53       <artifactId>containermanager</artifactId>
54       <version>0.4.0-SNAPSHOT</version>
55     </dependency>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>forwardingrulesmanager</artifactId>
59       <version>0.4.0-SNAPSHOT</version>
60     </dependency>
61         <dependency>
62       <groupId>org.opendaylight.controller</groupId>
63       <artifactId>clustering.services</artifactId>
64       <version>0.4.0-SNAPSHOT</version>
65     </dependency>
66   </dependencies>
67 </project>