Skip to content

Commit 07cc4e4

Browse files
authored
Fix up-to-dateness (#79)
2 parents 09d1c55 + d7dd04b commit 07cc4e4

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# AtPlug releases
22

33
## [Unreleased]
4+
### Fixed
5+
- `FindPlugsTask.classesFolders` changed from `@CompileClasspath` to `@Classpath`, hopefully fixing up-to-date problem.
46

57
## [1.2.1] - 2025-02-04
68
### Fixed

atplug-plugin-gradle/src/main/java/com/diffplug/atplug/tooling/gradle/FindPlugsTask.kt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@ import org.gradle.work.*
1515
*/
1616
@CacheableTask
1717
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
2219

2320
/** Directory where we will store discovered plugs. */
2421
@get:OutputDirectory abstract val discoveredPlugsDir: DirectoryProperty

0 commit comments

Comments
 (0)