Skip to content

Commit

Permalink
Merge branch '2.6.x' into 2.7.x
Browse files Browse the repository at this point in the history
Closes gh-32499
  • Loading branch information
wilkinsona committed Sep 26, 2022
2 parents 50040bd + cfac7f5 commit 5124ae9
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -32,8 +32,11 @@
import org.gradle.api.provider.ListProperty;
import org.gradle.api.provider.Property;
import org.gradle.api.tasks.Input;
import org.gradle.api.tasks.InputFile;
import org.gradle.api.tasks.Nested;
import org.gradle.api.tasks.Optional;
import org.gradle.api.tasks.PathSensitive;
import org.gradle.api.tasks.PathSensitivity;
import org.gradle.api.tasks.TaskAction;
import org.gradle.api.tasks.options.Option;
import org.gradle.work.DisableCachingByDefault;
Expand Down Expand Up @@ -121,7 +124,8 @@ public BootBuildImage() {
* Returns the property for the archive file from which the image will be built.
* @return the archive file property
*/
@Input
@InputFile
@PathSensitive(PathSensitivity.RELATIVE)
public RegularFileProperty getArchiveFile() {
return this.archiveFile;
}
Expand Down

0 comments on commit 5124ae9

Please sign in to comment.