Merge "BUG-704 Remove pax from netconf identity-ref test."
[controller.git] / opendaylight / northbound / statistics / 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.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>statistics.northbound</artifactId>
12   <version>0.4.2-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>junit</groupId>
17       <artifactId>junit</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.codehaus.enunciate</groupId>
21       <artifactId>enunciate-core-annotations</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>org.opendaylight.controller</groupId>
25       <artifactId>commons.northbound</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>org.opendaylight.controller</groupId>
29       <artifactId>containermanager</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.controller</groupId>
33       <artifactId>sal</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.opendaylight.controller</groupId>
37       <artifactId>statisticsmanager</artifactId>
38     </dependency>
39   </dependencies>
40   <build>
41     <plugins>
42       <plugin>
43         <groupId>org.apache.felix</groupId>
44         <artifactId>maven-bundle-plugin</artifactId>
45         <extensions>true</extensions>
46         <configuration>
47           <instructions>
48             <Export-Package></Export-Package>
49             <Import-Package>org.opendaylight.controller.forwardingrulesmanager,
50                 org.opendaylight.controller.sal.action,
51                 org.opendaylight.controller.sal.core,
52                 org.opendaylight.controller.sal.flowprogrammer,
53                 org.opendaylight.controller.sal.match,
54                 org.opendaylight.controller.sal.packet,
55                 org.opendaylight.controller.sal.reader,
56                 org.opendaylight.controller.sal.utils,
57                 org.opendaylight.controller.containermanager,
58                 org.opendaylight.controller.statisticsmanager,
59                 org.opendaylight.controller.usermanager,
60                 org.opendaylight.controller.switchmanager,
61                 org.opendaylight.controller.sal.authorization,
62                 org.apache.commons.logging,
63                 com.sun.jersey.spi.container.servlet,
64                 org.opendaylight.controller.northbound.commons,
65                 org.opendaylight.controller.northbound.commons.exception,
66                 org.opendaylight.controller.northbound.commons.utils,
67                 javax.ws.rs,
68                 javax.ws.rs.core,
69                 javax.xml.bind.annotation,
70                 javax.xml.bind,
71                 org.slf4j,
72                 org.apache.catalina.filters,
73                 com.fasterxml.jackson.jaxrs.base,
74                 com.fasterxml.jackson.jaxrs.json,
75                 !org.codehaus.enunciate.jaxrs</Import-Package>
76             <Export-Package></Export-Package>
77             <Web-ContextPath>/controller/nb/v2/statistics</Web-ContextPath>
78             <Jaxrs-Resources>,${classes;ANNOTATION;javax.ws.rs.Path}</Jaxrs-Resources>
79           </instructions>
80           <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
81         </configuration>
82       </plugin>
83       <plugin>
84         <groupId>org.codehaus.enunciate</groupId>
85         <artifactId>maven-enunciate-plugin</artifactId>
86         <dependencies>
87           <dependency>
88             <groupId>org.opendaylight.controller</groupId>
89             <artifactId>sal</artifactId>
90             <version>${sal.version}</version>
91           </dependency>
92         </dependencies>
93       </plugin>
94     </plugins>
95   </build>
96   <scm>
97     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
98     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
99     <tag>HEAD</tag>
100     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
101   </scm>
102 </project>