Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate from Apache Commons Compress to Ant #332

Merged
merged 1 commit into from
May 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
import jenkins.model.Jenkins;
import jenkins.util.BuildListenerAdapter;
import jenkins.util.VirtualFile;
import org.apache.commons.compress.archivers.ArchiveEntry;
import org.apache.commons.compress.archivers.tar.TarArchiveInputStream;
import org.apache.tools.tar.TarEntry;
import org.apache.tools.tar.TarInputStream;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.kohsuke.accmod.Restricted;
Expand Down Expand Up @@ -235,8 +235,8 @@
result.put(n.substring(0, n.length() - SUFFIX.length()), unpacked);
try (InputStream is = new FileInputStream(kid)) {
InputStream wrapped = FilePath.TarCompression.GZIP.extract(is);
TarArchiveInputStream archiveStream = new TarArchiveInputStream(wrapped);
ArchiveEntry archiveEntry;
TarInputStream archiveStream = new TarInputStream(wrapped);

Check warning on line 238 in src/main/java/org/jenkinsci/plugins/workflow/flow/StashManager.java

View check run for this annotation

ci.jenkins.io / Code Coverage

Not covered line

Line 238 is not covered by tests
TarEntry archiveEntry;
while ((archiveEntry = archiveStream.getNextEntry()) != null) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
IOUtils.copy(archiveStream, baos);
Expand Down
Loading