Ignore conn manager closure, take care by closure
[cli.git] / profiles / http / pom.xml
1 <?xml version="1.0"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4   <modelVersion>4.0.0</modelVersion>
5   <parent>
6     <groupId>org.onap.cli</groupId>
7     <artifactId>cli-profiles</artifactId>
8     <version>2.0.0</version>
9   </parent>
10
11   <artifactId>cli-profiles-http</artifactId>
12   <name>cli/profiles/http</name>
13   <packaging>jar</packaging>
14   <properties>
15     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16   </properties>
17   <dependencies>
18         <dependency>
19             <groupId>org.onap.cli</groupId>
20             <artifactId>cli-sample-mock-generator</artifactId>
21             <version>${project.version}</version>
22         </dependency>
23         <dependency>
24             <groupId>org.apache.httpcomponents</groupId>
25             <artifactId>httpclient</artifactId>
26             <version>4.3.5</version>
27         </dependency>
28         <dependency>
29           <groupId>org.apache.httpcomponents</groupId>
30           <artifactId>httpmime</artifactId>
31           <version>4.0.1</version>
32           <scope>compile</scope>
33         </dependency>
34         <dependency>
35             <groupId>com.jayway.jsonpath</groupId>
36             <artifactId>json-path</artifactId>
37             <version>2.2.0</version>
38         </dependency>
39         <dependency>
40             <groupId>com.fasterxml.jackson.core</groupId>
41             <artifactId>jackson-databind</artifactId>
42             <version>2.6.3</version>
43         </dependency>
44         <dependency>
45             <groupId>junit</groupId>
46             <artifactId>junit</artifactId>
47             <version>4.11</version>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.jmockit</groupId>
52             <artifactId>jmockit</artifactId>
53             <version>1.19</version>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.jmockit</groupId>
58             <artifactId>jmockit-coverage</artifactId>
59             <version>1.19</version>
60             <scope>test</scope>
61         </dependency>
62    </dependencies>
63    <build>
64         <plugins>
65             <plugin>
66               <groupId>org.apache.maven.plugins</groupId>
67               <artifactId>maven-dependency-plugin</artifactId>
68             </plugin>
69         </plugins>
70     </build>
71 </project>