Docs: Modified java build tool wiki to add info about maven settings (#19959)

This commit is contained in:
Jitendrasingh Chauhan (Jeetu)
2018-10-26 22:03:28 -05:00
committed by Tom
parent 5d609ab1c8
commit eb3aa437ee

View File

@ -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/