Skip to content

Commit

Permalink
Refactor builders
Browse files Browse the repository at this point in the history
  • Loading branch information
dmandalidis committed Dec 21, 2024
1 parent 1d9f3c4 commit 36e3b90
Show file tree
Hide file tree
Showing 9 changed files with 367 additions and 524 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Download the latest JAR or grab [via Maven][maven-search]

```java
// Create a client based on DOCKER_HOST and DOCKER_CERT_PATH env vars
final DockerClient docker = new JerseyDockerClientBuilder().fromEnv().build();
final DockerClient docker = DockerClientBuilder.fromEnv().build();

// Pull an image
docker.pull("busybox");
Expand Down
2 changes: 0 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,6 @@
<scope>provided</scope>
</dependency>

<!--optional deps -->
<!-- TODO we should pull out the Google Cloud support to a new library -->
<dependency>
<groupId>com.google.auth</groupId>
<artifactId>google-auth-library-oauth2-http</artifactId>
Expand Down

This file was deleted.

Loading

0 comments on commit 36e3b90

Please sign in to comment.