gradle-s3-plugin icon indicating copy to clipboard operation
gradle-s3-plugin copied to clipboard

Make S3UploadTask compatible with Gradle 7

Open runningcode opened this issue 3 years ago • 0 comments

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.

runningcode avatar Jul 19 '21 10:07 runningcode