Increase timeout for waiting for broker service in sal-binding-it.
[controller.git] / opendaylight / config / logback-config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <project
4         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
5         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
6     <modelVersion>4.0.0</modelVersion>
7     <parent>
8         <groupId>org.opendaylight.controller</groupId>
9         <artifactId>config-plugin-parent</artifactId>
10         <version>0.2.3-SNAPSHOT</version>
11         <relativePath>../config-plugin-parent</relativePath>
12     </parent>
13     <artifactId>logback-config</artifactId>
14     <name>${project.artifactId}</name>
15     <packaging>bundle</packaging>
16     <prerequisites>
17         <maven>3.0.4</maven>
18     </prerequisites>
19
20     <dependencies>
21         <dependency>
22             <groupId>${project.groupId}</groupId>
23             <artifactId>config-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.slf4j</groupId>
27             <artifactId>slf4j-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>ch.qos.logback</groupId>
31             <artifactId>logback-classic</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>ch.qos.logback</groupId>
35             <artifactId>logback-core</artifactId>
36         </dependency>
37
38         <dependency>
39             <groupId>com.google.guava</groupId>
40             <artifactId>guava</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>commons-io</groupId>
44             <artifactId>commons-io</artifactId>
45         </dependency>
46
47         <!-- test dependencies -->
48
49         <dependency>
50             <groupId>${project.groupId}</groupId>
51             <artifactId>config-manager</artifactId>
52             <scope>test</scope>
53             <type>test-jar</type>
54         </dependency>
55         <dependency>
56             <groupId>${project.groupId}</groupId>
57             <artifactId>config-manager</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>config-util</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.opendaylight.yangtools</groupId>
67             <artifactId>mockito-configuration</artifactId>
68         </dependency>
69         <dependency>
70           <groupId>org.apache.commons</groupId>
71           <artifactId>commons-lang3</artifactId>
72         </dependency>
73     </dependencies>
74     <build>
75         <plugins>
76             <plugin>
77                 <groupId>org.apache.felix</groupId>
78                 <artifactId>maven-bundle-plugin</artifactId>
79                 <configuration>
80                     <instructions>
81                         <Private-Package>
82                         </Private-Package>
83                         <Export-Package>
84                             org.opendaylight.controller.config.yang.logback.config,
85                             org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.logback.config.rev130716.*,
86                         </Export-Package>
87                     </instructions>
88                 </configuration>
89             </plugin>
90             <plugin>
91                 <groupId>org.opendaylight.yangtools</groupId>
92                 <artifactId>yang-maven-plugin</artifactId>
93             </plugin>
94         </plugins>
95     </build>
96 </project>