[maven-release-plugin] prepare release master-tagforprepareonly-controller-bulk-relea...
[controller.git] / opendaylight / northbound / httpservice-bridge / 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
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.1</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>httpservice-bridge</artifactId>
12   <version>0.0.1</version>
13   <description>HttpService bridge web application</description>
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.4.0</version>
22         <extensions>true</extensions>
23         <configuration>
24           <instructions>
25             <Export-Package>
26             </Export-Package>
27             <Import-Package>
28                 javax.servlet,
29                 javax.servlet.http,
30                 org.eclipse.equinox.http.servlet,
31                 org.opendaylight.controller.web,
32                 org.osgi.framework,
33                 org.osgi.service.http,
34                 org.slf4j,
35             </Import-Package>
36             <Web-ContextPath>/controller/osgi</Web-ContextPath>
37           </instructions>
38         </configuration>
39       </plugin>
40     </plugins>
41   </build>
42 </project>