Improve logging in NetconfClient, logging-bridge. Increase connection timeout in...
[controller.git] / opendaylight / logging / bridge / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3          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>commons.opendaylight</artifactId>
8         <version>1.4.2-SNAPSHOT</version>
9         <relativePath>../../commons/opendaylight</relativePath>
10     </parent>
11     <scm>
12         <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
13         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
14         <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
15         <tag>HEAD</tag>
16     </scm>
17
18     <artifactId>logging.bridge</artifactId>
19     <version>0.4.2-SNAPSHOT</version>
20     <packaging>bundle</packaging>
21
22     <dependencies>
23         <dependency>
24             <groupId>org.slf4j</groupId>
25             <artifactId>slf4j-api</artifactId>
26         </dependency>
27         <dependency>
28             <groupId>equinoxSDK381</groupId>
29             <artifactId>org.eclipse.osgi</artifactId>
30         </dependency>
31         <dependency>
32             <groupId>junit</groupId>
33             <artifactId>junit</artifactId>
34             <scope>test</scope>
35         </dependency>
36         <dependency>
37             <groupId>org.opendaylight.yangtools</groupId>
38             <artifactId>mockito-configuration</artifactId>
39             <scope>test</scope>
40         </dependency>
41         <dependency>
42             <groupId>ch.qos.logback</groupId>
43             <artifactId>logback-classic</artifactId>
44             <scope>test</scope>
45         </dependency>
46     </dependencies>
47
48     <build>
49         <plugins>
50             <plugin>
51                 <groupId>org.apache.felix</groupId>
52                 <artifactId>maven-bundle-plugin</artifactId>
53                 <version>${bundle.plugin.version}</version>
54                 <extensions>true</extensions>
55                 <configuration>
56                     <instructions>
57                         <Import-Package>
58                             org.slf4j,
59                             org.osgi.framework,
60                             org.osgi.service.log
61                         </Import-Package>
62                         <Bundle-Activator>
63                             org.opendaylight.controller.logging.bridge.internal.Activator
64                         </Bundle-Activator>
65                     </instructions>
66                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
67                 </configuration>
68             </plugin>
69         </plugins>
70     </build>
71 </project>