Commit 7f78665
Fix Gradle 9 compatibility for task classes extending abstract types
- Make PluginInstallTask abstract (extends Sync)
- Make PluginPackageTask abstract (extends Zip)
In Gradle 8+/9, tasks extending abstract task types like Sync and Zip
must be declared as abstract classes. This allows Gradle to create
concrete implementations at runtime with proper dependency injection.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <[email protected]>1 parent 111da1b commit 7f78665
File tree
2 files changed
+3
-3
lines changed- src/main/groovy/io/nextflow/gradle
2 files changed
+3
-3
lines changedLines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | 3 | | |
5 | 4 | | |
6 | 5 | | |
7 | 6 | | |
8 | 7 | | |
9 | 8 | | |
10 | | - | |
| 9 | + | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
11 | | - | |
| 11 | + | |
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| |||
0 commit comments