Merge "Bug 509: Improve logging in InMemoryDataStore."
[controller.git] / opendaylight / northbound / jolokia / 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
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>commons.opendaylight</artifactId>
8     <version>1.4.2-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11
12   <artifactId>jolokia-bridge</artifactId>
13   <version>0.0.2-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <description>Jolokia bridge web application</description>
16
17   <build>
18     <plugins>
19       <plugin>
20         <groupId>org.apache.felix</groupId>
21         <artifactId>maven-bundle-plugin</artifactId>
22         <version>${bundle.plugin.version}</version>
23         <extensions>true</extensions>
24         <configuration>
25           <instructions>
26             <Export-Package></Export-Package>
27             <Import-Package>javax.servlet,
28                 javax.servlet.http,
29                 org.eclipse.equinox.http.servlet,
30                 org.opendaylight.controller.web,
31                 org.osgi.framework,
32                 org.jolokia.osgi.servlet,
33                 org.apache.catalina.filters,
34                 org.slf4j,</Import-Package>
35             <Web-ContextPath>/controller/nb/v2/jolokia</Web-ContextPath>
36           </instructions>
37         </configuration>
38       </plugin>
39     </plugins>
40   </build>
41 </project>