This is an automated email from the ASF dual-hosted git repository. gaul pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/jclouds.git
commit e3f8de0a29956797b56c1c22e169387b97be6db8 Author: Andrew Gaul <[email protected]> AuthorDate: Wed Oct 9 12:27:39 2024 -0700 Specify okhttp as a test dependency in apachehc This is not transitively included somehow. --- drivers/apachehc/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/apachehc/pom.xml b/drivers/apachehc/pom.xml index 68ce165286..7e6c67c217 100644 --- a/drivers/apachehc/pom.xml +++ b/drivers/apachehc/pom.xml @@ -54,6 +54,11 @@ <artifactId>jetty-security</artifactId> <scope>test</scope> </dependency> + <dependency> + <groupId>com.squareup.okhttp3</groupId> + <artifactId>mockwebserver</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project>
