File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
atplug-plugin-gradle/src/main/java/com/diffplug/atplug/tooling/gradle Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
# AtPlug releases
2
2
3
3
## [ Unreleased]
4
+ ### Fixed
5
+ - ` FindPlugsTask.classesFolders ` changed from ` @CompileClasspath ` to ` @Classpath ` , hopefully fixing up-to-date problem.
4
6
5
7
## [ 1.2.1] - 2025-02-04
6
8
### Fixed
Original file line number Diff line number Diff line change @@ -15,10 +15,7 @@ import org.gradle.work.*
15
15
*/
16
16
@CacheableTask
17
17
abstract class FindPlugsTask : DefaultTask () {
18
- @get:CompileClasspath
19
- @get:Incremental
20
- @get:InputFiles
21
- abstract val classesFolders: ConfigurableFileCollection
18
+ @get:Classpath abstract val classesFolders: ConfigurableFileCollection
22
19
23
20
/* * Directory where we will store discovered plugs. */
24
21
@get:OutputDirectory abstract val discoveredPlugsDir: DirectoryProperty
You can’t perform that action at this time.
0 commit comments