Merge "Clean up initial configuration"
[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"
4    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5    <parent>
6       <groupId>org.opendaylight.controller</groupId>
7         <artifactId>config-plugin-parent</artifactId>
8         <version>0.2.3-SNAPSHOT</version>
9         <relativePath>../config-plugin-parent</relativePath>
10    </parent>
11    <modelVersion>4.0.0</modelVersion>
12    <artifactId>threadpool-config-impl</artifactId>
13    <name>${project.artifactId}</name>
14    <packaging>bundle</packaging>
15    <prerequisites>
16       <maven>3.0.4</maven>
17    </prerequisites>
18
19    <dependencies>
20       <dependency>
21          <groupId>${project.groupId}</groupId>
22          <artifactId>config-api</artifactId>
23       </dependency>
24       <dependency>
25          <groupId>${project.groupId}</groupId>
26          <artifactId>threadpool-config-api</artifactId>
27          <version>${project.version}</version>
28       </dependency>
29       <dependency>
30          <groupId>com.google.guava</groupId>
31          <artifactId>guava</artifactId>
32       </dependency>
33       <dependency>
34          <groupId>org.slf4j</groupId>
35          <artifactId>slf4j-api</artifactId>
36       </dependency>
37
38       <!--test dependencies -->
39       <dependency>
40          <groupId>org.opendaylight.controller</groupId>
41          <artifactId>config-manager</artifactId>
42          <scope>test</scope>
43          <type>test-jar</type>
44       </dependency>
45       <dependency>
46          <groupId>org.opendaylight.controller</groupId>
47          <artifactId>config-manager</artifactId>
48          <scope>test</scope>
49       </dependency>
50       <dependency>
51          <groupId>org.opendaylight.controller</groupId>
52          <artifactId>config-util</artifactId>
53          <scope>test</scope>
54       </dependency>
55       <dependency>
56          <groupId>org.opendaylight.bgpcep</groupId>
57          <artifactId>mockito-configuration</artifactId>
58          <scope>test</scope>
59       </dependency>
60    </dependencies>
61
62    <build>
63       <plugins>
64          <plugin>
65             <groupId>org.apache.felix</groupId>
66             <artifactId>maven-bundle-plugin</artifactId>
67             <configuration>
68                <instructions>
69                   <Private-Package>
70                      org.opendaylight.controller.config.threadpool.util,
71                      javax.annotation.*,
72                      org.opendaylight.controller.config.yang.threadpool.impl*,
73                   </Private-Package>
74                   <Export-Package>
75                       org.opendaylight.controller.config.threadpool.util,
76                       org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.threadpool.impl.rev130405.*,
77                   </Export-Package>
78                </instructions>
79             </configuration>
80          </plugin>
81          <plugin>
82             <groupId>org.apache.maven.plugins</groupId>
83             <artifactId>maven-jar-plugin</artifactId>
84          </plugin>
85
86          <plugin>
87             <groupId>org.opendaylight.yangtools</groupId>
88             <artifactId>yang-maven-plugin</artifactId>
89          </plugin>
90       </plugins>
91    </build>
92
93 </project>