Gradle buildscript dependencies

Jeff Storey picture Jeff Storey · Dec 18, 2012 · Viewed 48.1k times · Source

What is the difference between declaring repositories in the buildScript section of the gradle build or in the root level of the build.

Option 1:

build.gradle:

buildScript {
    repositories {
        mavenCentral();
    }
}

or

build.gradle:

repositories {
    mavenCentral();
}

Answer

Hiery Nomus picture Hiery Nomus · Dec 18, 2012

The repositories in the buildScript block are used to fetch the dependencies of your buildScript dependencies. These are the dependencies that are put on the classpath of your build and that you can refer to from your build file. For instance extra plugins that exist on the internet.

The repositories on the root level are used to fetch the dependencies that your project depends on. So all the dependencies you need to compile your project.