Robert
02/25/2021, 9:10 AMCould not find a 'gradlew' script or a 'build.gradle' file! Please check that they exist and are commited to Git.
which is correct, because I use build.gradle.kts
(with .kts).
This is also in the documentation (https://devcenter.heroku.com/articles/deploying-gradle-apps-on-heroku) but that would mean I HAVE to use gradlew
instead of the wrapper task in gradle?Vampire
02/25/2021, 9:44 AMgradlew
scripts checked in and how you mean using the wrapper task instead?
The wrapper task is only for updating the four wrapper files to newer versions.
If you don't have the four wrapper files checked in, this takes away one of the greatest strenghts of the Wrapper, that you don't even have to have Gradle installed to run the build but only Java.Robert
02/25/2021, 10:16 AMRobert
02/25/2021, 10:16 AMVampire
02/25/2021, 10:17 AMRobert
02/25/2021, 7:45 PM