Merge "Initial implementation of the ClusteredDataStore"
[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
35       <!--test dependencies -->
36       <dependency>
37          <groupId>org.opendaylight.controller</groupId>
38          <artifactId>config-manager</artifactId>
39          <scope>test</scope>
40          <type>test-jar</type>
41       </dependency>
42       <dependency>
43          <groupId>org.opendaylight.controller</groupId>
44          <artifactId>config-manager</artifactId>
45          <scope>test</scope>
46       </dependency>
47       <dependency>
48          <groupId>org.opendaylight.controller</groupId>
49          <artifactId>config-util</artifactId>
50          <scope>test</scope>
51       </dependency>
52       <dependency>
53          <groupId>org.opendaylight.bgpcep</groupId>
54          <artifactId>mockito-configuration</artifactId>
55          <scope>test</scope>
56       </dependency>
57    </dependencies>
58
59    <build>
60       <plugins>
61          <plugin>
62             <groupId>org.apache.felix</groupId>
63             <artifactId>maven-bundle-plugin</artifactId>
64             <configuration>
65                <instructions>
66                   <Private-Package>
67                      org.opendaylight.controller.config.threadpool.util,
68                      javax.annotation.*,
69                      org.opendaylight.controller.config.yang.threadpool.impl,
70                   </Private-Package>
71                   <Import-Package>
72                      org.opendaylight.controller.config.api.*,
73                      org.opendaylight.controller.config.spi.*,
74                      org.opendaylight.controller.config.threadpool,
75                      org.opendaylight.controller.config.yang.threadpool,
76                      javax.management,
77                      org.osgi.framework,
78                      org.slf4j,
79                      com.google.common.*
80                   </Import-Package>
81                   <Export-Package>
82                      org.opendaylight.controller.config.threadpool.util
83                   </Export-Package>
84                </instructions>
85             </configuration>
86          </plugin>
87          <plugin>
88             <groupId>org.apache.maven.plugins</groupId>
89             <artifactId>maven-jar-plugin</artifactId>
90          </plugin>
91
92          <plugin>
93             <groupId>org.opendaylight.yangtools</groupId>
94             <artifactId>yang-maven-plugin</artifactId>
95          </plugin>
96       </plugins>
97    </build>
98
99 </project>