fatimafatimaprogrammer commented on issue #581:
URL: https://github.com/apache/age/issues/581#issuecomment-1398835950

   Observing this error message 
   Your gradle wrapper is missing, broken or corrupted.
   
   
   **Restoring gradle wrapper:**
   
   It used to be that you needed to add a wrapper task to your build.gradle to 
restore gradle wrapper and all its dependencies. For instance:
   
   task wrapper(type: Wrapper) {
       gradleVersion = '4.1'
   }
   Newer versions of gradle do not require this. It is now a built-in task. 
Just run:
   
   gradle wrapper
   You can also supply additional flags to specify versions etc
   
   gradle wrapper --gradle-version 6.2 --distribution-type all
   When you run this task, a gradle wrapper script, and the required jar files 
are added to your source folders. Properties are stored in 
gradle/wrapper/gradle-wrapper.properties
   
   (You may need to install gradle locally to run this. brew install gradle on 
mac for instance. See more detailed instructions 
[here](https://docs.gradle.org/current/userguide/installation.html#installation))
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@age.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to