If I simply add a task definition to build.gradle
task Xml2Java {
def a;
a++;
}
, I don't see it in the Gradle Project window.
I can add the configuration:
configure(Xml2Java) {
group = 'Publishing'
description = 'Create source code in output directory'
}
Nothing changes.
Please, what steps should I do to create a task and to make it visible in the Gradle Project window in some group?