This message was deleted.
# community-support
s
This message was deleted.
j
Copy code
03:09pm] ./gradlew --version

------------------------------------------------------------
Gradle 7.5.1
------------------------------------------------------------

Build time:   2022-08-05 21:17:56 UTC
Revision:     d1daa0cbf1a0103000b71484e1dbfe096e095918

Kotlin:       1.6.21
Groovy:       3.0.10
Ant:          Apache Ant(TM) version 1.10.11 compiled on July 10 2021
JVM:          17.0.4.1 (Eclipse Adoptium 17.0.4.1+1)
OS:           Mac OS X 12.6 x86_64
The plugin loading is… unremarkable.
In case it helps anyone in the future: that’s the behavior if you don’t load the
groovy
plugin. 😊
I may PR a warning message for the plugin.
v
You cannot really emit a warning cleanly, because you cannot reason about the absence of a plugin without dirty tricks.
But as CodeNarc only makes sense with Groovy, it might maybe be appropriate to apply the groovy plugin instead of reacting to its application.
j
“…without dirty tricks…” 😈
Oh… yeah… I suppose it would be sane as a transitive dependency. D’you know if there are others in… wait… yes…
war
loads other plugins, yeah?
v
Most internal plugins probably apply others and be it just the
base
plugin.
application
applies
java
and
distribution
java
applies
java-base
java-base
applies
base
.....
j
Huh. I may just PR that myself, then.
👌 1
@Vampire thank you