org.gradle.api.tasks.CompatibilityAdapterForTaskInputs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.api.tasks;
import javax.annotation.Nullable;
/**
* Helper interface for binary compatibility with Gradle 2.x version of the {@link TaskInputs} interface.
*
* @deprecated The interface is only here to allow plugins built against Gradle 2.x to run and it will be removed in Gradle 5.0.
*/
@Deprecated
public interface CompatibilityAdapterForTaskInputs {
/**
* Registers some input files for this task.
*
* @param paths The input files. The given paths are evaluated as per {@link org.gradle.api.Project#files(Object...)}.
* @return this
*/
TaskInputs files(Object... paths);
/**
* Registers some input file for this task.
*
* @param path The input file. The given path is evaluated as per {@link org.gradle.api.Project#files(Object...)}.
* @return this
*/
TaskInputs file(Object path);
/**
* Registers an input directory hierarchy. All files found under the given directory are treated as input files for
* this task.
*
* @param path The directory. The path is evaluated as per {@link org.gradle.api.Project#file(Object)}.
* @return this
*/
TaskInputs dir(Object path);
/**
* Registers an input property for this task. This value is persisted when the task executes, and is compared
* against the property value for later invocations of the task, to determine if the task is up-to-date.
*
* The given value for the property must be Serializable, so that it can be persisted. It should also provide a
* useful {@code equals()} method.
*
* You can specify a closure or {@code Callable} as the value of the property. In which case, the closure or
* {@code Callable} is executed to determine the actual property value.
*
* @param name The name of the property. Must not be null.
* @param value The value for the property. Can be null.
*/
TaskInputs property(String name, @Nullable Object value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy