Merge "BUG 720 - YANG leaf as JSON input *<*:* couldn't be saved"
[controller.git] / opendaylight / northbound / httpservice-bridge / 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.5.0-SNAPSHOT</version>
9     <relativePath>../../commons/opendaylight</relativePath>
10   </parent>
11
12   <artifactId>httpservice-bridge</artifactId>
13   <version>0.1.0-SNAPSHOT</version>
14   <packaging>bundle</packaging>
15   <description>HttpService 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.osgi.service.http,
32                 org.slf4j,</Import-Package>
33             <Web-ContextPath>/controller/osgi</Web-ContextPath>
34           </instructions>
35         </configuration>
36       </plugin>
37     </plugins>
38   </build>
39 </project>