I am trying to upgrade from 6.8 to 7. The project started on gradle 4.x and the dependencies are configured as compile and runtime.
I started by changing all compile to implementation but found the following issue:
when updating,
compile (group: 'com.amazonaws', name: 'aws-java-sdk', version: AWS_JAVA_SDK_VERSION)
to
implementation (group: 'com.amazonaws', name: 'aws-java-sdk', version: AWS_JAVA_SDK_VERSION)
but then on a child project, I see a compilation error, which is not present when using compile
S3StorageController.java:3: error: package com.amazonaws.regions does not exist
import com.amazonaws.regions.Regions;
How can I define the dependency so that is is available on other projects?