org.gradle.api.file.RegularFileProperty Java Examples
The following examples show how to use
org.gradle.api.file.RegularFileProperty.
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: CleanSamplesTask.java From native-samples with Apache License 2.0 | 4 votes |
@InputFile public RegularFileProperty getManifest() { return manifest; }
Example #2
Source File: SymbolicLinkPreservingUntarTask.java From crate with Apache License 2.0 | 4 votes |
@InputFile public RegularFileProperty getTarFile() { return tarFile; }
Example #3
Source File: DownloadWebDriver.java From zap-extensions with Apache License 2.0 | 4 votes |
@OutputFile public RegularFileProperty getOutputFile() { return outputFile; }
Example #4
Source File: BomDocumentation.java From joinfaces with Apache License 2.0 | 4 votes |
public RegularFileProperty getInputFile() { return this.inputFile; }
Example #5
Source File: BomDocumentation.java From joinfaces with Apache License 2.0 | 4 votes |
public RegularFileProperty getOutputFile() { return this.outputFile; }
Example #6
Source File: PropertyDocumentation.java From joinfaces with Apache License 2.0 | 4 votes |
public RegularFileProperty getOutputFile() { return this.outputFile; }
Example #7
Source File: PropertyDocumentation.java From joinfaces with Apache License 2.0 | 4 votes |
public RegularFileProperty getInputFile() { return this.inputFile; }
Example #8
Source File: Make.java From native-samples with Apache License 2.0 | 4 votes |
@OutputFile public final RegularFileProperty getBinary() { return binary; }
Example #9
Source File: Make.java From native-samples with Apache License 2.0 | 4 votes |
@OutputFile public final RegularFileProperty getBinary() { return binary; }
Example #10
Source File: GenerateDummyCppSource.java From native-samples with Apache License 2.0 | 4 votes |
@OutputFile public RegularFileProperty getOutputFile() { return outputFile; }
Example #11
Source File: GeneratePublicMacrosManifest.java From native-samples with Apache License 2.0 | 4 votes |
@OutputFile public RegularFileProperty getOutputFile() { return outputFile; }
Example #12
Source File: Make.java From native-samples with Apache License 2.0 | 4 votes |
@OutputFile public final RegularFileProperty getBinary() { return binary; }
Example #13
Source File: SamplesManifestTask.java From native-samples with Apache License 2.0 | 4 votes |
@OutputFile public RegularFileProperty getManifest() { return manifest; }
Example #14
Source File: PackagingExtension.java From commerce-gradle-plugin with Apache License 2.0 | 4 votes |
public RegularFileProperty getDatahubWar() { return datahubWar; }
Example #15
Source File: Make.java From native-samples with Apache License 2.0 | 4 votes |
@OutputFile public final RegularFileProperty getBinary() { return binary; }
Example #16
Source File: ClojureCheck.java From clojurephant with Apache License 2.0 | 4 votes |
@OutputFile public RegularFileProperty getInternalOutputFile() { return outputFile; }
Example #17
Source File: Module.java From clojurephant with Apache License 2.0 | 4 votes |
@OutputFile public RegularFileProperty getOutputTo() { return outputTo; }
Example #18
Source File: ClojureScriptCompileOptions.java From clojurephant with Apache License 2.0 | 4 votes |
@OutputFile @Optional public RegularFileProperty getSourceMapPath() { return sourceMapFile; }
Example #19
Source File: ClojureScriptCompileOptions.java From clojurephant with Apache License 2.0 | 4 votes |
@OutputFile @Optional public RegularFileProperty getOutputTo() { return outputTo; }
Example #20
Source File: NativeImageTask.java From curiostack with MIT License | 4 votes |
@InputFile public RegularFileProperty getJarFile() { return jarFile; }
Example #21
Source File: SupportPortalDownload.java From commerce-gradle-plugin with Apache License 2.0 | 4 votes |
@OutputFile public RegularFileProperty getTargetFile() { return targetFile; }
Example #22
Source File: PatchLocalExtensions.java From commerce-gradle-plugin with Apache License 2.0 | 4 votes |
@Input public RegularFileProperty getTarget() { return target; }
Example #23
Source File: GenerateLocalextensions.java From commerce-gradle-plugin with Apache License 2.0 | 4 votes |
@OutputFile public RegularFileProperty getTarget() { return target; }
Example #24
Source File: PackagingExtension.java From commerce-gradle-plugin with Apache License 2.0 | 4 votes |
public RegularFileProperty getAllExtensionsZip() { return allExtensionsZip; }
Example #25
Source File: PackagingExtension.java From commerce-gradle-plugin with Apache License 2.0 | 4 votes |
public RegularFileProperty getPlatformZip() { return platformZip; }
Example #26
Source File: PlayRun.java From playframework with Apache License 2.0 | 2 votes |
/** * The assets jar to run with the Play application. * * @return The assets jar */ @Classpath public RegularFileProperty getAssetsJar() { return assetsJar; }
Example #27
Source File: PlayRun.java From playframework with Apache License 2.0 | 2 votes |
/** * The Play application jar to run. * * @return The Play application jar */ @Classpath public RegularFileProperty getApplicationJar() { return applicationJar; }
Example #28
Source File: JacocoDump.java From gradle-plugins with MIT License | votes |
RegularFileProperty getDestfile();
Example #29
Source File: JacocoDump.java From gradle-plugins with MIT License | votes |
RegularFileProperty getDestfile();