感谢回复,我正在寻找应用 License-gradle-plugin 来检查源代码中的标头。请给我完整的脚本。
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'nl.javadude.gradle.plugins:license-gradle-plugin:0.5.0'
}
}
apply plugin: 'license'
我在我的 中使用了此代码build.gradle
,但它没有更新我所有源文件中的标题src/main/*.groovy files
。.groovy
如果不在 groovy 文件中写入标头,我如何编写构建脚本来检查文件中是否存在标头?
谢谢,kothapeta Raju。
我按照你说的尝试过,但出现以下异常
FAILURE:无法确定要执行的任务。
出了什么问题:在根项目“license-gradle-plugin-master”中找不到任务“licenseFormatMain”。
尝试:运行 gradle 任务以获取可用任务列表。
构建失败
谢谢,拉朱。