Remove CSS features
[controller.git] / opendaylight / config / netty-threadgroup-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <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">
4
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>org.opendaylight.controller</groupId>
9     <artifactId>config-subsystem</artifactId>
10     <version>0.9.0-SNAPSHOT</version>
11     <relativePath>../</relativePath>
12   </parent>
13   <artifactId>netty-threadgroup-config</artifactId>
14   <packaging>bundle</packaging>
15   <name>${project.artifactId}</name>
16   <description>Configuration Wrapper around netty's event group</description>
17
18   <dependencies>
19     <dependency>
20       <groupId>org.opendaylight.controller</groupId>
21       <artifactId>netty-config-api</artifactId>
22     </dependency>
23   </dependencies>
24
25   <build>
26     <plugins>
27       <plugin>
28         <groupId>org.apache.felix</groupId>
29         <artifactId>maven-bundle-plugin</artifactId>
30         <extensions>true</extensions>
31         <configuration>
32           <instructions>
33             <Import-Package>*,io.netty.channel</Import-Package>
34           </instructions>
35         </configuration>
36       </plugin>
37     </plugins>
38   </build>
39 </project>