frevib commented on code in PR #3614:
URL: https://github.com/apache/avro/pull/3614#discussion_r2665855572
##########
lang/java/gradle-plugin/src/main/kotlin/eu/eventloopsoftware/avro/gradle/plugin/tasks/AbstractCompileTask.kt:
##########
@@ -0,0 +1,71 @@
+package eu.eventloopsoftware.avro.gradle.plugin.tasks
+
+import org.gradle.api.provider.ListProperty
+import org.gradle.api.provider.Property
+import org.gradle.api.tasks.Input
+import org.gradle.api.tasks.SourceTask
+
+abstract class AbstractCompileTask : SourceTask() {
Review Comment:
That's an error on my side, `DefaultTask` is indeed not being deprecated.
Anyway, with `DefaultTask` we don't have `source`, `setIncludes(..)` and
`setExcludes(..)`which are very useful in filtering for specific Avro file
extension like `"**/*.avsc"`. Then we have to manually filter the `FileTree`
for Avro file extensions. Do you still recommend it?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]