Increase timeout for waiting for broker service in sal-binding-it.
[controller.git] / opendaylight / config / netty-threadgroup-config / 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
6     <parent>
7         <groupId>org.opendaylight.controller</groupId>
8         <artifactId>config-plugin-parent</artifactId>
9         <version>0.2.3-SNAPSHOT</version>
10         <relativePath>../config-plugin-parent</relativePath>
11     </parent>
12
13     <modelVersion>4.0.0</modelVersion>
14     <artifactId>netty-threadgroup-config</artifactId>
15     <description>Configuration Wrapper around netty's event group</description>
16     <packaging>bundle</packaging>
17     <name>${project.artifactId}</name>
18     <prerequisites>
19         <maven>3.0.4</maven>
20     </prerequisites>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.opendaylight.controller</groupId>
25             <artifactId>config-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>org.opendaylight.controller</groupId>
29             <artifactId>netty-config-api</artifactId>
30             <version>${project.version}</version>
31         </dependency>
32         <dependency>
33             <groupId>org.slf4j</groupId>
34             <artifactId>slf4j-api</artifactId>
35         </dependency>
36
37         <!--test dependencies -->
38         <dependency>
39             <groupId>junit</groupId>
40             <artifactId>junit</artifactId>
41             <scope>test</scope>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.controller</groupId>
45             <artifactId>config-manager</artifactId>
46             <scope>test</scope>
47             <type>test-jar</type>
48         </dependency>
49         <dependency>
50             <groupId>org.opendaylight.controller</groupId>
51             <artifactId>config-manager</artifactId>
52             <scope>test</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.opendaylight.controller</groupId>
56             <artifactId>config-util</artifactId>
57             <scope>test</scope>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.yangtools</groupId>
61             <artifactId>mockito-configuration</artifactId>
62         </dependency>
63
64     </dependencies>
65
66     <build>
67         <plugins>
68
69             <plugin>
70                 <groupId>org.opendaylight.yangtools</groupId>
71                 <artifactId>yang-maven-plugin</artifactId>
72             </plugin>
73
74
75             <plugin>
76                 <groupId>org.apache.felix</groupId>
77                 <artifactId>maven-bundle-plugin</artifactId>
78                 <extensions>true</extensions>
79                 <configuration>
80                     <instructions>
81                         <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
82                         <Export-Package>
83                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.netty.threadgroup.rev131107.*,
84                         </Export-Package>
85                     </instructions>
86                 </configuration>
87             </plugin>
88         </plugins>
89     </build>
90
91     <distributionManagement>
92         <site>
93             <id>${project.artifactId}</id>
94             <name>NETTY-THREADGROUP-CONFIG Module site</name>
95             <url>${basedir}/target/site/${project.artifactId}</url>
96         </site>
97     </distributionManagement>
98
99 </project>