in a plugin, I'm setting the project group (`targe...
# community-support
t
in a plugin, I'm setting the project group (
target.group = "foo"
). When I do that, I get this error
Copy code
* What went wrong:
Circular dependency between the following tasks:
:addons:public:compileJava
+--- :addons:public:compileJava (*)
\--- :addons:public:compileKotlin
     +--- :addons:public:compileJava (*)
     \--- :addons:public:compileKotlin (*)

(*) - details omitted (listed previously)
if instead I set the group in the
build.gradle
, that error does not occur. Any ideas on why this might happen? I also don't get the error if I set the group in the
publishing.publications
block 🤔