Caleb Cushing
12/05/2024, 7:57 PMtasks.check
to be generated... what plugin should I apply? this is a root project, it doesn't really have java, applying java-platform
does give it to me though. I"m just wondering if there's a plugin that does ... lessTrevJonez
12/05/2024, 8:06 PMtasks.register<Task>("check")
is the quick and easy without any extra overhead if you just need it to appease like a templated CI or something that assumes it is always present.Eric Haag
12/05/2024, 8:22 PMbase
to get check
.Caleb Cushing
12/05/2024, 8:39 PMephemient
12/06/2024, 1:23 AMclean
task and clean*
task rule, so you want it in any project with tasks that produce build outputVampire
12/06/2024, 1:45 AMlifecycle-base
plugin.
This is the bottom-most built-in plugin and adds build
, check
, clean
, assemble
, and the clean<task>
task rule.
The base
plugin applies that plugin and does some other things like registering the base
extension, configuring archive tasks, adding build<configuration>
task rule, adding archives
and default
configuration, and so on.Vampire
12/06/2024, 1:47 AMcheck
task manually, because if you ever want to apply any other plugin in that project that causes the lifecycle-base
plugin to be applied, you then have to replace it as the check
tasks would conflict.