As noted in the comments, just running
./gradlew
worked for me. Adding the ./
tells it to look in the current directory since it isn't in the path.
.\gradlew
Gradle wrapper needs to be built. Try running gradle wrapper --gradle-version 2.13
Remember to change 2.13 to your gradle version number. After running this command, you should see new scripts added to your project folder. You should be able to run the wrapper with ./gradlew build
to build your code. Please refer to this guid for more information https://spring.io/guides/gs/gradle/.
Running this bash command works for me by running chmod 755 gradlew
as sometimes file properties changed upon moving from one OS to another (Windows, Linux and Mac).
If you are using mac, try giving root access to gradlew by doing
chmod +x ./gradlew
the same problem occurs to me...
I check the file wrx permissions with:$ls -l ./gradlew
-> -rw-rw-r-- (no execute permission)
so I use command $chmod +x ./gradlew
and this problem solved.
From mac,
Nothing is working except the following command
chmod 777 gradlew Then
./gradlew
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With