Can you explain what this means? > Project acce...
# gradle
n
Can you explain what this means?
Project accessors enabled, but root project name not explicitly set for 'buildSrc'. Checking out the project in different folders will impact the generated code and implicitly the buildscript classpath, breaking caching.
I have a
buildSrc
project in my multi-project build but
rootProject.name
is set to the "real" root project, not
buildSrc
...
e
buildSrc
doesn't have a name explicitly set
it's not a big deal since you can't rename the
buildSrc
directory anyway, but you can eliminate the warning by configuring the project name inside buildSrc's settings
1
🙏 1
n
I didn't know that It is allowed to add a
buildSrc/settings.gradle.kts
file 🙂 Thanks.
640 Views