Skip to content

Commit

Permalink
Bump commons-compress to 1.26.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yahavi committed Jun 14, 2024
1 parent 941e78d commit 1a4e70f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import org.apache.commons.collections4.MultiValuedMap;
import org.apache.commons.collections4.multimap.ArrayListValuedHashMap;
import org.apache.commons.compress.archivers.tar.TarArchiveEntry;
import org.apache.commons.compress.archivers.ArchiveEntry;
import org.apache.commons.compress.archivers.tar.TarArchiveInputStream;
import org.apache.commons.compress.compressors.gzip.GzipCompressorInputStream;
import org.apache.commons.lang3.StringUtils;
Expand Down Expand Up @@ -118,7 +118,7 @@ private void readPackageInfoFromTarball() throws IOException {
}
try (TarArchiveInputStream inputStream = new TarArchiveInputStream(
new GzipCompressorInputStream(new BufferedInputStream(Files.newInputStream(path.toFile().toPath()))))) {
TarArchiveEntry entry;
ArchiveEntry entry;
while ((entry = inputStream.getNextEntry()) != null) {
Path parent = Paths.get(entry.getName()).getParent();
if (parent != null && StringUtils.equals(parent.toString(), "package") && StringUtils.endsWith(entry.getName(), "package.json")) {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
antVersion = '1.10.12'
buildInfoExtractorVersion = '4.29.4'
commonsCodecVersion = '1.15'
commonsCompressVersion = '1.26.0'
commonsCompressVersion = '1.26.2'
commonsIoVersion = '2.11.0'
commonsLang3Version = '3.12.0'
commonsLoggingVersion = '1.2'
Expand Down

0 comments on commit 1a4e70f

Please sign in to comment.