Difference among mavenCentral(), jCenter() and mavenLocal()?
Actually, all 3 are Maven repository. We use these maven repositories to our build by using its URL address or its location in the local file system. By using URL: repositories { maven { url(“https://plugins.gradle.org/m2/”) } } By using local file system: repositories { maven { url ‘../maven-repo’ } } Gradle has three “aliases” which … Read more