Merge "Ganymed ChannelManager hack for subsystem command, functionality for subsystem...
[controller.git] / opendaylight / config / threadpool-config-api / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3    <parent>
4       <groupId>org.opendaylight.controller</groupId>
5       <artifactId>config-subsystem</artifactId>
6       <version>0.2.3-SNAPSHOT</version>
7    </parent>
8    <modelVersion>4.0.0</modelVersion>
9    <artifactId>threadpool-config-api</artifactId>
10    <name>${project.artifactId}</name>
11    <packaging>bundle</packaging>
12    <prerequisites>
13       <maven>3.0.4</maven>
14    </prerequisites>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.controller</groupId>
19             <artifactId>config-api</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>com.google.guava</groupId>
23             <artifactId>guava</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                      org.opendaylight.controller.config.api.*,
36                      com.google.common.eventbus,
37                   </Import-Package>
38                   <Export-Package>
39                      org.opendaylight.controller.config.threadpool,
40                      org.opendaylight.controller.config.yang.threadpool
41                   </Export-Package>
42                </instructions>
43             </configuration>
44          </plugin>
45          <plugin>
46             <groupId>org.opendaylight.yangtools</groupId>
47             <artifactId>yang-maven-plugin</artifactId>
48          </plugin>
49       </plugins>
50    </build>
51 </project>