[java-support] branch master updated: Add a missing explicit (optional) dependency on httpcore
Ian Young
ian at iay.org.uk
Tue Mar 6 12:19:45 EST 2018
This is an automated email from the git hooks/post-receive script.
iay pushed a commit to branch master
in repository java-support.
View the commit online:
http://git.shibboleth.net/view/?p=java-support.git;a=commit;h=46fcc199644cc14aa96643635fb850880269431d
The following commit(s) were added to refs/heads/master by this push:
new 46fcc19 Add a missing explicit (optional) dependency on httpcore
46fcc19 is described below
commit 46fcc199644cc14aa96643635fb850880269431d
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 9bd6423..0466e93 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