In order to add the Maven Central Repository to your Java project, all you need to do is add the below to the repositories block of the build.gradle file.
repositories {
mavenCentral()
}
Note: Make sure to add this repository block outside of any other dependencies or plugins.
Example:
plugins {
...
//plugins
...
}
repositories {
mavenCentral()
}
dependencies {
...
//project dependencies
...
}
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!