This message was deleted.
# community-support
s
This message was deleted.
c
Just a random thought: if adding --scan doesn't change the classpath is because you already have the gradle-enterprise plugin in your classpath
m
It's the weirdest thing. Adding
--scan
always changes the classpath
But somehow the classpath of "included + --scan" == "standalone"
c
It's very weird
m
Can I get more info about the classpath than just a hash?
c
For a task I guess you could print the files in a doFirst (but I don't know if there is a better way)
m
This classpath is not an input property or anything like that though. It's the buildscript classpath
c
🤔 you said its "compileKotlin" task, so it's a task, but yes, a task to compile the buildScript..
m
I think it's the "classpath of the task itself" vs the "compile classpath that the compiler will use", if that even makes sense?
Damn this stuff is hard
c
The only thing that happens before that could be the settings.gradle
m
And
plugins {}
block too, right?
And
buildscript {}
?
Classpaths all the way down...
😂 1
c
The other option would be writing a reproducer and the maybe you can get some help
m
Yep, makes sense. I'll try to see how to isolate this 👍