Hi, when I'm using `./gradlew clean build` I'm get...
# kash_shell
p
Hi, when I'm using
./gradlew clean build
I'm getting Circular dependency error:
Copy code
FAILURE: Build failed with an exception.

* What went wrong:
Circular dependency between the following tasks:
:build
+--- :build (*)
+--- :buildDependents
|    \--- :build (*)
\--- :buildNeeded
     \--- :build (*)
It's because of the
Copy code
tasks {
    build {
        dependsOn(shadowJar)
    }
}
Is this an expected behaviour ?