62af41ab46964cd64445805f7b3f8e07aa8c93ad
[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         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Export-Package></Export-Package>
26             <Import-Package>javax.servlet,
27                 javax.servlet.http,
28                 org.eclipse.equinox.http.servlet,
29                 org.opendaylight.controller.web,
30                 org.osgi.framework,
31                 org.jolokia.osgi.servlet,
32                 org.apache.catalina.filters,
33                 org.slf4j,</Import-Package>
34             <Web-ContextPath>/controller/nb/v2/jolokia</Web-ContextPath>
35           </instructions>
36         </configuration>
37       </plugin>
38     </plugins>
39   </build>
40 </project>