Merge "Bug-835:Reserve ports should be logical ports"
[controller.git] / opendaylight / config / threadpool-config-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <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">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.opendaylight.controller</groupId>
7     <artifactId>config-plugin-parent</artifactId>
8     <version>0.2.5-SNAPSHOT</version>
9     <relativePath>../config-plugin-parent</relativePath>
10   </parent>
11   <artifactId>threadpool-config-impl</artifactId>
12   <packaging>bundle</packaging>
13   <name>${project.artifactId}</name>
14   <prerequisites>
15     <maven>3.0.4</maven>
16   </prerequisites>
17
18   <dependencies>
19     <dependency>
20       <groupId>${project.groupId}</groupId>
21       <artifactId>config-api</artifactId>
22     </dependency>
23     <dependency>
24       <groupId>${project.groupId}</groupId>
25       <artifactId>threadpool-config-api</artifactId>
26     </dependency>
27     <dependency>
28       <groupId>com.google.guava</groupId>
29       <artifactId>guava</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.opendaylight.yangtools</groupId>
33       <artifactId>mockito-configuration</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>org.slf4j</groupId>
37       <artifactId>slf4j-api</artifactId>
38     </dependency>
39
40     <!--test dependencies -->
41     <dependency>
42       <groupId>org.opendaylight.controller</groupId>
43       <artifactId>config-manager</artifactId>
44       <type>test-jar</type>
45       <scope>test</scope>
46     </dependency>
47     <dependency>
48       <groupId>org.opendaylight.controller</groupId>
49       <artifactId>config-manager</artifactId>
50       <scope>test</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.opendaylight.controller</groupId>
54       <artifactId>config-util</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>org.opendaylight.controller.config.threadpool.util,
67                      javax.annotation.*,
68                      org.opendaylight.controller.config.yang.threadpool.impl*,</Private-Package>
69             <Export-Package>org.opendaylight.controller.config.threadpool.util,
70                       org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.threadpool.impl.*,</Export-Package>
71           </instructions>
72         </configuration>
73       </plugin>
74       <plugin>
75         <groupId>org.apache.maven.plugins</groupId>
76         <artifactId>maven-jar-plugin</artifactId>
77       </plugin>
78
79       <plugin>
80         <groupId>org.opendaylight.yangtools</groupId>
81         <artifactId>yang-maven-plugin</artifactId>
82       </plugin>
83     </plugins>
84   </build>
85
86 </project>