org.gradle.api.tasks.InputFile Java Examples

The following examples show how to use org.gradle.api.tasks.InputFile. 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: SigningConfig.java    From javaide with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Store file used when signing.
 * <p>
 * <p>See <a href="http://developer.android.com/tools/publishing/app-signing.html">
 * Signing Your Applications</a>
 */
@Override
@InputFile
@Optional
public File getStoreFile() {
    // Getter override to annotate it with Gradle's input annotation.
    return super.getStoreFile();
}
 
Example #2
Source File: LintOptions.java    From javaide with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the default configuration file to use as a fallback
 */
@Override
@Optional
@InputFile
public File getLintConfig() {
    return lintConfig;
}
 
Example #3
Source File: AbstractJettyRunTask.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@InputFile
@Optional
public File getOverrideWebXml() {
    return overrideWebXml;
}
 
Example #4
Source File: JettyRun.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@InputFile
@Optional
public File getJettyEnvXmlFile() {
    return jettyEnvXmlFile;
}
 
Example #5
Source File: JettyRunWar.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
/**
 * Returns the web application to deploy.
 */
@InputFile
public File getWebApp() {
    return webApp;
}
 
Example #6
Source File: RhinoShellExec.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@InputFile
@Optional
public File getScript() {
    return script == null ? null : getProject().file(script);
}
 
Example #7
Source File: InputFilePropertyAnnotationHandler.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Class<? extends Annotation> getAnnotationType() {
    return InputFile.class;
}
 
Example #8
Source File: JettyRun.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@InputFile
@Optional
public File getJettyEnvXmlFile() {
    return jettyEnvXmlFile;
}
 
Example #9
Source File: InputFilePropertyAnnotationHandler.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Class<? extends Annotation> getAnnotationType() {
    return InputFile.class;
}
 
Example #10
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 #11
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 #12
Source File: Lyx2PDFTask.java    From jenetics with Apache License 2.0 4 votes vote down vote up
@InputFile
public File getDocument() {
	return _document;
}
 
Example #13
Source File: ChecksumTask.java    From jenetics with Apache License 2.0 4 votes vote down vote up
@InputFile
public File getInputFile() {
	return _inputFile;
}
 
Example #14
Source File: Verify.java    From gradle-download-task with Apache License 2.0 4 votes vote down vote up
@InputFile
@Override
public File getSrc() {
    return action.getSrc();
}
 
Example #15
Source File: SymbolicLinkPreservingUntarTask.java    From crate with Apache License 2.0 4 votes vote down vote up
@InputFile
public RegularFileProperty getTarFile() {
    return tarFile;
}
 
Example #16
Source File: JettyRun.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@InputFile
@Optional
public File getJettyEnvXml() {
    return jettyEnvXml;
}
 
Example #17
Source File: AbstractJettyRunTask.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
/**
 * Returns the jetty configuration file to use. When {@code null}, no configuration file is used.
 */
@InputFile
@Optional
public File getJettyConfig() {
    return jettyConfig;
}
 
Example #18
Source File: JettyRun.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@InputFile
@Optional
public File getJettyEnvXml() {
    return jettyEnvXml;
}
 
Example #19
Source File: AbstractJettyRunTask.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@InputFile
@Optional
public File getWebDefaultXml() {
    return webDefaultXml;
}
 
Example #20
Source File: JettyRunWar.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
/**
 * Returns the web application to deploy.
 */
@InputFile
public File getWebApp() {
    return webApp;
}
 
Example #21
Source File: ScalaDocOptions.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
/**
 * Returns the style sheet to override default style.
 */
@InputFile @Optional
public File getStyleSheet() {
    return styleSheet;
}
 
Example #22
Source File: RhinoShellExec.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@InputFile
@Optional
public File getScript() {
    return script == null ? null : getProject().file(script);
}
 
Example #23
Source File: PackageTask.java    From thorntail with Apache License 2.0 4 votes vote down vote up
@Optional
@InputFile
private File getPropertiesFile() {
    return getThorntailExtension().getPropertiesFile();
}
 
Example #24
Source File: PackageTask.java    From thorntail with Apache License 2.0 4 votes vote down vote up
@InputFile
private File getProjectArtifactFile() {
    return jarTask.getArchivePath();
}
 
Example #25
Source File: StageAppYamlExtension.java    From app-gradle-plugin with Apache License 2.0 4 votes vote down vote up
@InputFile
public File getArtifact() {
  return artifact;
}
 
Example #26
Source File: StageStandardExtension.java    From app-gradle-plugin with Apache License 2.0 4 votes vote down vote up
@InputFile
@Optional
public File getDockerfile() {
  return dockerfile;
}
 
Example #27
Source File: CleanSamplesTask.java    From native-samples with Apache License 2.0 4 votes vote down vote up
@InputFile
public RegularFileProperty getManifest() {
    return manifest;
}
 
Example #28
Source File: JibTask.java    From curiostack with MIT License 4 votes vote down vote up
@InputFile
public Property<Path> getExePath() {
  return exePath;
}
 
Example #29
Source File: UpdateNodeResolutions.java    From curiostack with MIT License 4 votes vote down vote up
@InputFile
public File getOldPackageJson() {
  return packageJson();
}
 
Example #30
Source File: UploadCodeCovCacheTask.java    From curiostack with MIT License 4 votes vote down vote up
@InputFile
public File getCodeCovReportFile() {
  return getProject().file("build/codecov-report.txt");
}