summaryrefslogtreecommitdiffstats
path: root/jdisc_http_service/pom.xml
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@verizonmedia.com>2019-08-14 16:48:31 +0200
committerBjørn Christian Seime <bjorncs@verizonmedia.com>2019-08-15 14:46:15 +0200
commit8011beb6256b5a5a4b6287a1d89fb472836cbd65 (patch)
tree45ca62c76b5cc781f8050f42d1309ad84dd0248d /jdisc_http_service/pom.xml
parent4135bb0abbbe1eb6cf2e3607ca457a57d8c77d12 (diff)
Add health check proxy support to jdisc connectors
Add connector configuration that will transform the connector to a health check proxy for to a different connector, e.g proxying http -> https. This is a required feature to support http-only load balancer health checks when the container is intended to be running in a https-only environment.
Diffstat (limited to 'jdisc_http_service/pom.xml')
-rw-r--r--jdisc_http_service/pom.xml12
1 files changed, 7 insertions, 5 deletions
diff --git a/jdisc_http_service/pom.xml b/jdisc_http_service/pom.xml
index 978275ad9cc..979b9418f4a 100644
--- a/jdisc_http_service/pom.xml
+++ b/jdisc_http_service/pom.xml
@@ -16,6 +16,13 @@
<packaging>container-plugin</packaging>
<name>${project.artifactId}</name>
<dependencies>
+ <!-- COMPILE SCOPE -->
+ <dependency>
+ <groupId>org.apache.httpcomponents</groupId>
+ <artifactId>httpclient</artifactId>
+ <scope>compile</scope>
+ </dependency>
+
<!-- PROVIDED SCOPE -->
<dependency>
<groupId>com.google.inject</groupId>
@@ -80,11 +87,6 @@
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<scope>test</scope>
</dependency>