Skip to content

Commit aaf55bb

Browse files
committed
Make suppressedFiles input as just paths, we don't care about content here
1 parent a4ec46c commit aaf55bb

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

dokka-runners/dokka-gradle-plugin/src/main/kotlin/engine/parameters/DokkaSourceSetSpec.kt

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,10 +265,16 @@ constructor(
265265
*
266266
* Will be concatenated with generated files if [suppressGeneratedFiles] is set to `false`.
267267
*/
268-
@get:InputFiles
269-
@get:PathSensitive(PathSensitivity.RELATIVE)
268+
@get:Internal
270269
abstract val suppressedFiles: ConfigurableFileCollection
271270

271+
/**
272+
* We don't care about the content of those [suppressedFiles] as we use those only as paths to filter sources.
273+
*/
274+
@get:Input
275+
internal val suppressedFilesInput: List<String>
276+
get() = suppressedFiles.map { it.path }.sorted()
277+
272278
/**
273279
* Whether to document/analyze generated files.
274280
*

0 commit comments

Comments
 (0)