Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
gradle 中是否有 ANT 等效的 basedir 属性?
${basedir}
我正在尝试获取构建脚本所在目录的名称。
先感谢您!
根据您的确切需求,您可以使用buildFile.parent或projectDir。(构建文件路径默认为"$projectDir/build.gradle"并且可以在 中重新配置settings.gradle。)请参阅Gradle 构建语言参考,了解哪些属性和方法可用于Project和其他类。
buildFile.parent
projectDir
"$projectDir/build.gradle"
settings.gradle
Project