Merge "Bug:129 Connection Manager Dashlet"
[controller.git] / opendaylight / config / threadpool-config-impl / 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.2-SNAPSHOT</version>
7    </parent>
8    <modelVersion>4.0.0</modelVersion>
9    <artifactId>threadpool-config-impl</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>${project.groupId}</groupId>
19          <artifactId>config-api</artifactId>
20       </dependency>
21       <dependency>
22          <groupId>${project.groupId}</groupId>
23          <artifactId>threadpool-config-api</artifactId>
24          <version>${project.version}</version>
25       </dependency>
26       <dependency>
27          <groupId>com.google.guava</groupId>
28          <artifactId>guava</artifactId>
29       </dependency>
30       <dependency>
31          <groupId>org.slf4j</groupId>
32          <artifactId>slf4j-api</artifactId>
33       </dependency>
34    </dependencies>
35
36    <build>
37       <plugins>
38          <plugin>
39             <groupId>org.apache.felix</groupId>
40             <artifactId>maven-bundle-plugin</artifactId>
41             <configuration>
42                <instructions>
43                   <Private-Package>
44                      org.opendaylight.controller.config.threadpool.util,
45                      javax.annotation.*,
46                      org.opendaylight.controller.config.yang.threadpool.impl,
47                   </Private-Package>
48                   <Import-Package>
49                      org.opendaylight.controller.config.api.*,
50                      org.opendaylight.controller.config.spi.*,
51                      org.opendaylight.controller.config.threadpool,
52                      org.opendaylight.controller.config.yang.threadpool,
53                      javax.management,
54                      org.osgi.framework,
55                      org.slf4j,
56                      com.google.common.*
57                   </Import-Package>
58                   <Export-Package>
59                      org.opendaylight.controller.config.threadpool.util
60                   </Export-Package>
61                </instructions>
62             </configuration>
63          </plugin>
64          <plugin>
65             <groupId>org.apache.maven.plugins</groupId>
66             <artifactId>maven-jar-plugin</artifactId>
67          </plugin>
68
69          <plugin>
70             <groupId>org.opendaylight.yangtools</groupId>
71             <artifactId>yang-maven-plugin</artifactId>
72          </plugin>
73       </plugins>
74    </build>
75
76 </project>