Merge "Added flags for flow removed event"
[controller.git] / opendaylight / config / netty-config-api / 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   <parent>
3     <groupId>org.opendaylight.controller</groupId>
4     <artifactId>config-subsystem</artifactId>
5     <version>0.2.3-SNAPSHOT</version>
6   </parent>
7   <modelVersion>4.0.0</modelVersion>
8   <artifactId>netty-config-api</artifactId>
9      <name>${project.artifactId}</name>
10    <packaging>bundle</packaging>
11    <prerequisites>
12       <maven>3.0.4</maven>
13    </prerequisites>
14
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.controller</groupId>
18             <artifactId>config-api</artifactId>
19         </dependency>
20         <dependency>
21             <groupId>com.google.guava</groupId>
22             <artifactId>guava</artifactId>
23         </dependency>
24         <dependency>
25             <groupId>io.netty</groupId>
26             <artifactId>netty-transport</artifactId>
27         </dependency>
28     </dependencies>
29    <build>
30       <plugins>
31          <plugin>
32             <groupId>org.apache.felix</groupId>
33             <artifactId>maven-bundle-plugin</artifactId>
34             <configuration>
35                <instructions>
36                   <Import-Package>
37                      org.opendaylight.controller.config.api.*,
38                      io.netty.channel,
39                      io.netty.util,
40                      io.netty.util.concurrent
41                   </Import-Package>
42                   <Export-Package>
43                      org.opendaylight.controller.config.yang.netty
44                   </Export-Package>
45                </instructions>
46             </configuration>
47          </plugin>
48          <plugin>
49             <groupId>org.opendaylight.yangtools</groupId>
50             <artifactId>yang-maven-plugin</artifactId>
51          </plugin>
52       </plugins>
53    </build>
54 </project>