The wrapper seems to be configured incorrectly. There is probably no ATM wrapper.
$ ls gradle/wrapper
gradle-wrapper.jar gradle-wrapper.properties
When you look in gradle/wrapper
, do you see gradle-wrapper.jar
?
if you install gradle, you can generate the jar with this command:
$ gradle wrapper
source
share