Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# AtPlug releases

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

## [1.2.1] - 2025-02-04
### Fixed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ import org.gradle.work.*
*/
@CacheableTask
abstract class FindPlugsTask : DefaultTask() {
@get:CompileClasspath
@get:Incremental
@get:InputFiles
abstract val classesFolders: ConfigurableFileCollection
@get:Classpath abstract val classesFolders: ConfigurableFileCollection

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