diff --git a/guide/english/java/build-tools/index.md b/guide/english/java/build-tools/index.md index 1ef7c61d1f..5cb865a2ac 100644 --- a/guide/english/java/build-tools/index.md +++ b/guide/english/java/build-tools/index.md @@ -8,7 +8,7 @@ Java build tools allow you to customize your builds to do things such as specify Gradle build scripts can be written in Groovy or Kotlin and are highly customizable. Most projects use the Gradle wrapper, allowing them to be built on any system, even without Gradle installed. Gradle is the recommended build tool for Android development. ## Maven -Maven build files are written with XML. Like Gradle, many plugins are written for Maven to customize your builds, however Maven is not as customizable because you cannot directly interact with a Maven API. +Maven build files are written with XML. Like Gradle, many plugins are written for Maven to customize your builds, however Maven is not as customizable because you cannot directly interact with a Maven API. However, you can modify certain configurations by modifying your settings.xml file in the .m2 folder. More info available [here](https://maven.apache.org/settings.html) ### More Information: https://gradle.org/