How does the Gradle runtime configuration for a task differ from the configuration for a filter?
问题 I've implemented a Groovy wrapper around some code to instantiate that code as a Gradle (6.2.2) Task: task xprocTest(type: XMLCalabashTask) { input("source", "../src/test/resources/source.xml") output("result", "/tmp/x/result.xml") pipeline "pipe.xpl" } The underlying code searches the classpath for classes with a particular annotation. That works fine and finds about 97 classes so annotated. I'm trying to implement a wrapper (in Java this time, if that's relevant) around the same code to