You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 16, 2021. It is now read-only.
Going through the code in S3DownloadMojo.java I have come across the following lines:
if (keys.size()==1) {
downloadSingleFile(amazonS3,keys.get(0));
return;
}
Here downloadSingleFile() is set to only download a single file if the number of keys given is one. Could this be enhanced to recursively fetch all objects under the given prefix via another configuration parameter?
The text was updated successfully, but these errors were encountered:
When I pass the S3 prefix of the objects that I want downloaded before packaging, I get the following error:
The execution config is as follows:
Going through the code in
S3DownloadMojo.java
I have come across the following lines:Here
downloadSingleFile()
is set to only download a single file if the number of keys given is one. Could this be enhanced to recursively fetch all objects under the given prefix via another configuration parameter?The text was updated successfully, but these errors were encountered: