Skip to content

Commit

Permalink
Update to docker-java 3.2.1 (#2435)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsideup committed Apr 12, 2020
1 parent ee05f4a commit 0b7e72f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ subprojects {
for (entry in jf.entries()) {
def name = entry.name
if (name.endsWith(".class")) {
packages.add(name.substring(0, name.lastIndexOf('/')))
def index = name.lastIndexOf('/')
if (index != -1) {
packages.add(name.substring(0, index))
}
}
}
jf.close()
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ dependencies {
exclude(group: "net.java.dev.jna")
}

shaded ('com.github.docker-java:docker-java-transport-okhttp:3.2.0') {
shaded ('com.github.docker-java:docker-java-transport-okhttp:3.2.1') {
exclude(group: 'net.java.dev.jna')
exclude(group: 'com.google.code.findbug')
exclude(group: 'org.slf4j')
Expand Down

0 comments on commit 0b7e72f

Please sign in to comment.