> For the complete documentation index, see [llms.txt](https://help.aikido.dev/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.aikido.dev/autofix-and-remediation/faq/gradle-jacoco-version-changes.md).

# Gradle - Jacoco version changes

**TL;DR** Make sure to commit `gradlew` to your repository for AutoFix to use the correct Gradle version.

If no `gradlew` script is present in the repo, AutoFix will us Gradle 8.14.4. Most likely this is not the Gradle version required for the repository. This can result in random version bumps in libraries like Jacoco.

Use the following commands to add `gradlew` to your repository:

```
## Navigate to your repo
cd <repository>

## Generate the gradlew wrapper
gradle wrapper

## Check that the gradlew wrapper is created and make it executable
ls gradlew
chmod +x gradlew

## Commit the wrapper to the repo
git add gradlew gradlew.bat gradle/wrapper/gradle-wrapper.jar gradle/wrapper/gradle-wrapper.properties
git commit -m 'Add the gradle wrapper'
```

See the [gradle wrapper documentation](https://docs.gradle.org/current/userguide/gradle_wrapper.html) for more information.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://help.aikido.dev/autofix-and-remediation/faq/gradle-jacoco-version-changes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
