[java-support] branch maint-7 updated: Add a missing explicit (optional) dependency on httpcore

Ian Young ian at iay.org.uk
Tue Mar 6 12:19:35 EST 2018


This is an automated email from the git hooks/post-receive script.

iay pushed a commit to branch maint-7
in repository java-support.

View the commit online:
http://git.shibboleth.net/view/?p=java-support.git;a=commit;h=c9d09850f5160bf42094fe3098f9f4d029f2a183

The following commit(s) were added to refs/heads/maint-7 by this push:
       new  c9d0985   Add a missing explicit (optional) dependency on httpcore
c9d0985 is described below

commit c9d09850f5160bf42094fe3098f9f4d029f2a183
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Tue Mar 6 17:17:48 2018 +0000

    Add a missing explicit (optional) dependency on httpcore
---
 pom.xml | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/pom.xml b/pom.xml
index cc6bb49..ca7b718 100644
--- a/pom.xml
+++ b/pom.xml
@@ -80,15 +80,21 @@
             <optional>true</optional>
         </dependency>
         <dependency>
-            <!-- Required if using classes with command line support. -->
-            <groupId>com.beust</groupId>
-            <artifactId>jcommander</artifactId>
+            <!-- Required if you're using anything in the httpclient package -->
+            <groupId>org.apache.httpcomponents</groupId>
+            <artifactId>httpclient-cache</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>
             <!-- Required if you're using anything in the httpclient package -->
             <groupId>org.apache.httpcomponents</groupId>
-            <artifactId>httpclient-cache</artifactId>
+            <artifactId>httpcore</artifactId>
+            <optional>true</optional>
+        </dependency>
+        <dependency>
+            <!-- Required if using classes with command line support. -->
+            <groupId>com.beust</groupId>
+            <artifactId>jcommander</artifactId>
             <optional>true</optional>
         </dependency>
         <dependency>

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list