Bug 509: Improve logging in InMemoryDataStore.
[controller.git] / opendaylight / commons / httpclient / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.controller</groupId>
6     <artifactId>commons.opendaylight</artifactId>
7     <version>1.4.2-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10   <scm>
11     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
12     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
13     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
14     <tag>HEAD</tag>
15   </scm>
16
17   <artifactId>commons.httpclient</artifactId>
18   <version>0.1.2-SNAPSHOT</version>
19   <packaging>bundle</packaging>
20
21   <build>
22     <plugins>
23       <plugin>
24         <groupId>org.apache.felix</groupId>
25         <artifactId>maven-bundle-plugin</artifactId>
26         <version>${bundle.plugin.version}</version>
27         <extensions>true</extensions>
28         <configuration>
29           <instructions>
30             <Import-Package>
31             javax.crypto,
32             javax.crypto.spec,
33             javax.net,
34             javax.net.ssl,
35             javax.security.auth.x500,
36             javax.servlet,
37             org.apache.log4j,
38             org.ietf.jgss,
39             !org.apache.commons.codec.*,
40             !org.apache.log,
41             !org.apache.avalon.framework.*
42             </Import-Package>
43             <Export-Package>
44               org.opendaylight.controller.commons.httpclient
45             </Export-Package>
46             <Embed-Dependency>
47               httpclient,httpcore,commons-logging
48             </Embed-Dependency>
49             <Embed-Transitive>false</Embed-Transitive>
50           </instructions>
51           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
52         </configuration>
53       </plugin>
54       <plugin>
55         <groupId>org.apache.maven.plugins</groupId>
56         <artifactId>maven-checkstyle-plugin</artifactId>
57         <version>${checkstyle.version}</version>
58         <dependencies>
59           <dependency>
60             <groupId>org.opendaylight.controller</groupId>
61             <artifactId>checkstyle</artifactId>
62             <version>0.0.3-SNAPSHOT</version>
63           </dependency>
64         </dependencies>
65         <configuration>
66           <failsOnError>true</failsOnError>
67           <configLocation>controller/checkstyle.xml</configLocation>
68         </configuration>
69       </plugin>
70     </plugins>
71   </build>
72   <dependencies>
73     <dependency>
74       <groupId>junit</groupId>
75       <artifactId>junit</artifactId>
76     </dependency>
77     <dependency>
78       <groupId>org.apache.httpcomponents</groupId>
79       <artifactId>httpclient</artifactId>
80       <version>4.3</version>
81     </dependency>
82     <dependency>
83       <groupId>org.apache.httpcomponents</groupId>
84       <artifactId>httpcore</artifactId>
85     <version>4.3</version>
86     </dependency>
87     <dependency>
88       <groupId>commons-logging</groupId>
89       <artifactId>commons-logging</artifactId>
90       <version>1.1.3</version>
91     </dependency>
92   </dependencies>
93 </project>