如何创建gradle buildscript配置?

以下给我:
“>在org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler_Decorated@5aaf4b6e上找不到参数[com.example:artefact:1.0.0]的方法gradleCommon()。”:

buildscript {
    configurations {
        gradleCommon
    }

    repositories {
        mavenCentral()
    }

    dependencies {
        gradleCommon 'com.example:artefact:1.0.0'
        classpath 'com.bmuschko:gradle-tomcat-plugin:2.0'
        classpath 'mysql:mysql-connector-java:5.1.27'
    }
}

最佳答案

您将需要使用记录的API来创建buildscript配置。您看到的行为是尝试调用不存在的方法和调用Groovy缺少的方法行为的组合。

根据我在Gradle论坛上的回答:



根据马克·维埃拉(Mark Vieira)在Gradle论坛上的回应:

07-27 14:07