Java Code Examples for org.gradle.api.tasks.PathSensitivity#NONE

The following examples show how to use org.gradle.api.tasks.PathSensitivity#NONE . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractJavaccTask.java    From javaccPlugin with MIT License 5 votes vote down vote up
@InputDirectory
@SkipWhenEmpty
@PathSensitive(PathSensitivity.NONE)
@Optional
public File getInputDirectory() {
    if (!inputDirectory.exists()) {
        return null;
    } else {
        return inputDirectory;
    }
}
 
Example 2
Source File: UnMockTask.java    From unmock-plugin with Apache License 2.0 4 votes vote down vote up
@InputFiles
@PathSensitive(PathSensitivity.NONE)
public FileCollection getAllAndroid() {
    return allAndroid;
}
 
Example 3
Source File: UnMockTask.java    From unmock-plugin with Apache License 2.0 4 votes vote down vote up
@OutputDirectory
@PathSensitive(PathSensitivity.NONE)
public File getOutputDir() {
    return outputDir;
}
 
Example 4
Source File: UnMockTask.java    From unmock-plugin with Apache License 2.0 4 votes vote down vote up
@OutputFile
@PathSensitive(PathSensitivity.NONE)
public File getUnmockedOutputJar() {
    return unmockedOutputJar;
}
 
Example 5
Source File: JGivenReport.java    From JGiven with Apache License 2.0 4 votes vote down vote up
@Optional
@InputFile
@PathSensitive( PathSensitivity.NONE )
File getCustomCssFile();
 
Example 6
Source File: JGivenReport.java    From JGiven with Apache License 2.0 4 votes vote down vote up
@Optional
@InputFile
@PathSensitive( PathSensitivity.NONE )
File getCustomJsFile();
 
Example 7
Source File: JGivenReportTask.java    From JGiven with Apache License 2.0 4 votes vote down vote up
@InputDirectory
@SkipWhenEmpty
@PathSensitive(PathSensitivity.NONE)
public File getResults() {
    return results;
}