BUG 2302 : odl-clustering-test-app should not be part of the odl-restconf-all feature set
[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.5.0-SNAPSHOT</version>
8     <relativePath>../../commons/opendaylight</relativePath>
9   </parent>
10
11   <artifactId>commons.httpclient</artifactId>
12   <version>0.2.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14   <dependencies>
15     <dependency>
16       <groupId>commons-logging</groupId>
17       <artifactId>commons-logging</artifactId>
18       <version>1.1.3</version>
19     </dependency>
20     <dependency>
21       <groupId>junit</groupId>
22       <artifactId>junit</artifactId>
23     </dependency>
24     <dependency>
25       <groupId>org.apache.httpcomponents</groupId>
26       <artifactId>httpclient</artifactId>
27       <version>4.3</version>
28     </dependency>
29     <dependency>
30       <groupId>org.apache.httpcomponents</groupId>
31       <artifactId>httpcore</artifactId>
32       <version>4.3</version>
33     </dependency>
34   </dependencies>
35
36   <build>
37     <plugins>
38       <plugin>
39         <groupId>org.apache.felix</groupId>
40         <artifactId>maven-bundle-plugin</artifactId>
41         <extensions>true</extensions>
42         <configuration>
43           <instructions>
44             <Import-Package>javax.crypto,
45             javax.crypto.spec,
46             javax.net,
47             javax.net.ssl,
48             javax.security.auth.x500,
49             javax.servlet,
50             org.apache.log4j,
51             org.ietf.jgss,
52             !org.apache.commons.codec.*,
53             !org.apache.log,
54             !org.apache.avalon.framework.*</Import-Package>
55             <Export-Package>org.opendaylight.controller.commons.httpclient</Export-Package>
56             <Embed-Dependency>httpclient,httpcore,commons-logging</Embed-Dependency>
57             <Embed-Transitive>false</Embed-Transitive>
58           </instructions>
59           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
60         </configuration>
61       </plugin>
62       <plugin>
63         <groupId>org.apache.maven.plugins</groupId>
64         <artifactId>maven-checkstyle-plugin</artifactId>
65         <configuration>
66           <failsOnError>true</failsOnError>
67           <configLocation>controller/checkstyle.xml</configLocation>
68         </configuration>
69         <dependencies>
70           <dependency>
71             <groupId>org.opendaylight.controller</groupId>
72             <artifactId>checkstyle</artifactId>
73             <version>0.1.0-SNAPSHOT</version>
74           </dependency>
75         </dependencies>
76       </plugin>
77     </plugins>
78   </build>
79   <scm>
80     <connection>scm:git:ssh://git.opendaylight.org:29418/controller.git</connection>
81     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/controller.git</developerConnection>
82     <tag>HEAD</tag>
83     <url>https://wiki.opendaylight.org/view/OpenDaylight_Controller:Main</url>
84   </scm>
85 </project>