bump netty to version 4.0.10.Final
[controller.git] / opendaylight / config / config-api / pom.xml
1 <?xml version="1.0"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <artifactId>config-subsystem</artifactId>
8         <groupId>org.opendaylight.controller</groupId>
9         <version>0.2.1-SNAPSHOT</version>
10     </parent>
11
12     <artifactId>config-api</artifactId>
13     <name>${project.artifactId}</name>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>com.google.code.findbugs</groupId>
19             <artifactId>jsr305</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.osgi</groupId>
23             <artifactId>org.osgi.core</artifactId>
24         </dependency>
25     </dependencies>
26
27     <build>
28         <plugins>
29             <plugin>
30                 <groupId>org.apache.felix</groupId>
31                 <artifactId>maven-bundle-plugin</artifactId>
32                 <configuration>
33                     <instructions>
34                         <Import-Package>
35                             javax.management,
36                             org.opendaylight.protocol.concepts,
37                             org.osgi.framework,
38                         </Import-Package>
39                         <Export-Package>
40                             org.opendaylight.controller.config.api,
41                             org.opendaylight.controller.config.api.annotations,
42                             org.opendaylight.controller.config.spi,
43                             org.opendaylight.controller.config.api.jmx,
44                             org.opendaylight.controller.config.api.jmx.constants,
45                             org.opendaylight.controller.config.api.runtime,
46                             org.opendaylight.controller.config.stat,
47                         </Export-Package>
48                     </instructions>
49                 </configuration>
50             </plugin>
51         </plugins>
52     </build>
53 </project>