Skip to content

Commit

Permalink
Merge pull request #743 from intersoftAG/master
Browse files Browse the repository at this point in the history
Fix: Cache mismatch when absolute Path differ
  • Loading branch information
ysb33r authored Dec 18, 2024
2 parents b522d87 + 3c12968 commit dc28c9b
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -480,7 +480,11 @@ class AbstractAsciidoctorTask extends AbstractJvmModelExecTask<AsciidoctorJvmExe
}.curry(project.configurations) as Function<List<Dependency>, Configuration>

inputs.files(this.asciidoctorj.configuration)
inputs.files { gemJarProviders }.withPathSensitivity(RELATIVE)
.withPathSensitivity(RELATIVE)
.withPropertyName('asciidoctorj-dependencies')
inputs.files { gemJarProviders }
.withPathSensitivity(RELATIVE)
.withPropertyName('gemJarProviders')
inputs.property 'backends', { -> backends() }
inputs.property 'asciidoctorj-version', { -> asciidoctorj.version }
inputs.property 'jruby-version', { -> asciidoctorj.jrubyVersion ?: '' }
Expand Down

0 comments on commit dc28c9b

Please sign in to comment.