Skip to content

Commit 8d3f9de

Browse files
committed
Fix httpclient and httpcore property names
The property names must match the artifact names for downstream tooling (particularly the melting pot) to function optimally well.
1 parent ae1ea5d commit 8d3f9de

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -655,8 +655,8 @@
655655
<spark.version>2.3.1</spark.version>
656656

657657
<!-- Apache HTTPComponents - https://hc.apache.org/ -->
658-
<apache-httpclient.version>4.5.6</apache-httpclient.version>
659-
<apache-httpcore.version>4.4.11</apache-httpcore.version>
658+
<httpclient.version>4.5.11</httpclient.version>
659+
<httpcore.version>4.4.13</httpcore.version>
660660

661661
<!-- Batik - https://xmlgraphics.apache.org/batik/ -->
662662
<batik.version>1.11</batik.version>
@@ -2476,7 +2476,7 @@
24762476
<dependency>
24772477
<groupId>org.apache.httpcomponents</groupId>
24782478
<artifactId>httpclient</artifactId>
2479-
<version>${apache-httpclient.version}</version>
2479+
<version>${httpclient.version}</version>
24802480
<exclusions>
24812481
<exclusion>
24822482
<groupId>commons-logging</groupId>
@@ -2487,7 +2487,7 @@
24872487
<dependency>
24882488
<groupId>org.apache.httpcomponents</groupId>
24892489
<artifactId>httpcore</artifactId>
2490-
<version>${apache-httpcore.version}</version>
2490+
<version>${httpcore.version}</version>
24912491
</dependency>
24922492
<!-- Batik - https://xmlgraphics.apache.org/batik/ -->
24932493
<dependency>

0 commit comments

Comments
 (0)