This message was deleted.
# community-support
s
This message was deleted.
v
Maybe if it is in
buildSrc
, what's your plan?
z
yep it’s in
buildSrc
. How would that differ between regular projects?
v
I don't understand the question
z
edited my initial question! my bad
v
Ah, I meant if the class to be used is in
buildSrc
and you use it in your regular build in the build script
Within that one file it will probably not work. The
buildscript
block needs to be evaluated separately first as it defines the class path to build the rest of the script file, so you cannot use the class that is defined in the rest as the rest is not compiled yet and cannot before the buildscipt block is already evaluated.
Classical hen and egg
👍 1