1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <parent >
6+ <artifactId >parent-modules</artifactId >
7+ <groupId >com.wdbyte</groupId >
8+ <version >1.0.0-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+
12+ <groupId >com.wdbyte.httpclient</groupId >
13+ <artifactId >apache-httpclient</artifactId >
14+
15+ <properties >
16+ <maven .compiler.source>17</maven .compiler.source>
17+ <maven .compiler.target>17</maven .compiler.target>
18+ </properties >
19+
20+ <dependencies >
21+ <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5 -->
22+ <dependency >
23+ <groupId >org.apache.httpcomponents.client5</groupId >
24+ <artifactId >httpclient5</artifactId >
25+ <version >5.1.3</version >
26+ </dependency >
27+
28+ <dependency >
29+ <groupId >org.junit.jupiter</groupId >
30+ <artifactId >junit-jupiter</artifactId >
31+ <scope >test</scope >
32+ </dependency >
33+
34+ <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents.client5/httpclient5-fluent -->
35+ <dependency >
36+ <groupId >org.apache.httpcomponents.client5</groupId >
37+ <artifactId >httpclient5-fluent</artifactId >
38+ <version >5.1.3</version >
39+ </dependency >
40+
41+ </dependencies >
42+
43+ <dependencyManagement >
44+ <dependencies >
45+ <dependency >
46+ <groupId >org.junit</groupId >
47+ <artifactId >junit-bom</artifactId >
48+ <version >5.8.2</version >
49+ <type >pom</type >
50+ <scope >import</scope >
51+ </dependency >
52+ </dependencies >
53+ </dependencyManagement >
54+ </project >
0 commit comments