diff options
author | axtloss <axtlos@getcryst.al> | 2023-05-15 22:36:20 +0200 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2023-05-15 22:36:20 +0200 |
commit | 9736e92073502adcfd466a629f10464f518e2c15 (patch) | |
tree | 8d9b0d2b935fe95f5edbcd635b1dbd29313bbee1 /pom.xml | |
parent | 01c8a59f8aa41296b791c8a64aa3b42da8e7458e (diff) | |
download | jshipit-9736e92073502adcfd466a629f10464f518e2c15.tar.gz jshipit-9736e92073502adcfd466a629f10464f518e2c15.tar.bz2 |
multithreaded downloads and non docker registries
Runs each layer download on a different thread.
Allows using registries other than registry.docker.io
Diffstat (limited to '')
-rwxr-xr-x | pom.xml | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -16,11 +16,6 @@ <dependencies> <dependency> <groupId>com.github.docker-java</groupId> - <artifactId>docker-java</artifactId> - <version>3.3.0</version> - </dependency> - <dependency> - <groupId>com.github.docker-java</groupId> <artifactId>docker-java-transport-httpclient5</artifactId> <version>3.3.0</version> </dependency> @@ -34,6 +29,12 @@ <artifactId>jackson-databind</artifactId> <version>2.14.2</version> </dependency> + <dependency> + <groupId>me.tongfei</groupId> + <artifactId>progressbar</artifactId> + <version>0.9.5</version> + </dependency> + </dependencies> <build> |