Gradle buildscript dependencies

后端 未结 3 1369
我寻月下人不归
我寻月下人不归 2020-11-28 02:18

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:

<
3条回答
  •  爱一瞬间的悲伤
    2020-11-28 02:25

    The build script (i.e. build.gradle) may have some dependencies for the execution of the build script itself. You would enclose those dependencies within the buildScript block. Chapter 4 of Gradle Beyond the Basics describes it in detail.

提交回复
热议问题