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

Make S3UploadTask compatible with Gradle 7 #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

runningcode
Copy link

The bucket property is optional and might not have a value. It needs to be marked as such otherwise Gradle 7 will fail the build.

* What went wrong:
A problem was found with the configuration of task ':build-cache-deep-dive-maven:s3Upload' (type 'S3UploadTask').
  - In plugin 's3' type 'com.github.skhatri.s3aws.plugin.S3UploadTask' property 'bucket' doesn't have a configured value.

    Reason: This property isn't marked as optional and no value has been configured.

    Possible solutions:
      1. Assign a value to 'bucket'.
      2. Mark property 'bucket' as optional.

    Please refer to https://docs.gradle.org/7.1.1/userguide/validation_problems.html#value_not_set for more details about this problem.

The `bucket` property is optional and might not have a value. It needs to be marked as such otherwise Gradle 7 will fail the build.
```
* What went wrong:
A problem was found with the configuration of task ':build-cache-deep-dive-maven:s3Upload' (type 'S3UploadTask').
  - In plugin 's3' type 'com.github.skhatri.s3aws.plugin.S3UploadTask' property 'bucket' doesn't have a configured value.

    Reason: This property isn't marked as optional and no value has been configured.

    Possible solutions:
      1. Assign a value to 'bucket'.
      2. Mark property 'bucket' as optional.

    Please refer to https://docs.gradle.org/7.1.1/userguide/validation_problems.html#value_not_set for more details about this problem.
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant