We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
suppressedFiles
1 parent a4ec46c commit aaf55bbCopy full SHA for aaf55bb
dokka-runners/dokka-gradle-plugin/src/main/kotlin/engine/parameters/DokkaSourceSetSpec.kt
@@ -265,10 +265,16 @@ constructor(
265
*
266
* Will be concatenated with generated files if [suppressGeneratedFiles] is set to `false`.
267
*/
268
- @get:InputFiles
269
- @get:PathSensitive(PathSensitivity.RELATIVE)
+ @get:Internal
270
abstract val suppressedFiles: ConfigurableFileCollection
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
+
278
/**
279
* Whether to document/analyze generated files.
280
0 commit comments