Technology Consulting
Return to: Gradle Reference

Add Your Local Maven Repository

How to add your local Maven repository as an artifact source

In your build.gradle file:

Add mavenLocal() to your repositories closure. The order is important.

repositories {
    mavenCentral()
    mavenLocal()
}
Return to: Gradle Reference