Increase timeout for waiting for broker service in sal-binding-it.
[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.yangtools</groupId>
57          <artifactId>mockito-configuration</artifactId>
58       </dependency>
59    </dependencies>
60
61    <build>
62       <plugins>
63          <plugin>
64             <groupId>org.apache.felix</groupId>
65             <artifactId>maven-bundle-plugin</artifactId>
66             <configuration>
67                <instructions>
68                   <Private-Package>
69                      org.opendaylight.controller.config.threadpool.util,
70                      javax.annotation.*,
71                      org.opendaylight.controller.config.yang.threadpool.impl*,
72                   </Private-Package>
73                   <Export-Package>
74                       org.opendaylight.controller.config.threadpool.util,
75                       org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.threadpool.impl.rev130405.*,
76                   </Export-Package>
77                </instructions>
78             </configuration>
79          </plugin>
80          <plugin>
81             <groupId>org.apache.maven.plugins</groupId>
82             <artifactId>maven-jar-plugin</artifactId>
83          </plugin>
84
85          <plugin>
86             <groupId>org.opendaylight.yangtools</groupId>
87             <artifactId>yang-maven-plugin</artifactId>
88          </plugin>
89       </plugins>
90    </build>
91
92 </project>