Java 类org.gradle.api.tasks.OutputFile 实例源码

项目:Reer    文件:Wrapper.java   
/**
 * Returns the file to write the wrapper properties to.
 */
@OutputFile
public File getPropertiesFile() {
    File jarFileDestination = getJarFile();
    return new File(jarFileDestination.getParentFile(), jarFileDestination.getName().replaceAll("\\.jar$",
            ".properties"));
}
项目:intellij-ce-playground    文件:LintOptions.java   
/** The optional path to where an HTML report should be written */
@Override
@Nullable
@Optional
@OutputFile
public File getHtmlOutput() {
    return htmlOutput;
}
项目:intellij-ce-playground    文件:LintOptions.java   
/** The optional path to where an XML report should be written */
@Override
@Nullable
@Optional
@OutputFile
public File getXmlOutput() {
    return xmlOutput;
}
项目:Pushjet-Android    文件:Wrapper.java   
/**
 * Returns the file to write the wrapper properties to.
 */
@OutputFile
public File getPropertiesFile() {
    File jarFileDestination = getJarFile();
    return new File(jarFileDestination.getParentFile(), jarFileDestination.getName().replaceAll("\\.jar$",
            ".properties"));
}
项目:Pushjet-Android    文件:Wrapper.java   
/**
 * Returns the file to write the wrapper properties to.
 */
@OutputFile
public File getPropertiesFile() {
    File jarFileDestination = getJarFile();
    return new File(jarFileDestination.getParentFile(), jarFileDestination.getName().replaceAll("\\.jar$",
            ".properties"));
}
项目:ormlite-android-gradle-plugin    文件:CreateOrmLiteConfigTask.java   
@OutputFile
private File getStateFile() {
    final File buildDir = getProject().getBuildDir();
    final File taskDir = new File(buildDir, TASK_TEMP_FILE__NAME);
    if(!taskDir.exists()) {
        taskDir.mkdirs();
    }
    return new File(taskDir, "using-ormlite.txt");
}
项目:jenetics    文件:ChecksumTask.java   
@Optional
@OutputFile
public File getChecksumFile() {
    File checksumFile = _checksumFile;

    if (checksumFile == null) {
        final String extension = _algorithm.toLowerCase().replace("-", "");
        checksumFile = new File(
            _inputFile.getParent(),
            format("%s.%s", _inputFile.getName(), extension)
        );
    }

    return checksumFile;
}
项目:Reer    文件:ApiJar.java   
@OutputFile
public File getOutputFile() {
   return outputFile;
}
项目:Reer    文件:Wrapper.java   
/**
 * Returns the file to write the wrapper script to.
 */
@OutputFile
public File getScriptFile() {
    return getProject().file(scriptFile);
}
项目:Reer    文件:Wrapper.java   
/**
 * Returns the file to write the wrapper batch script to.
 */
@OutputFile
public File getBatchScript() {
    File scriptFile = getScriptFile();
    return new File(scriptFile.getParentFile(), scriptFile.getName().replaceFirst("(\\.[^\\.]+)?$", ".bat"));
}
项目:Reer    文件:Wrapper.java   
/**
 * Returns the file to write the wrapper jar file to.
 */
@OutputFile
public File getJarFile() {
    return getProject().file(jarFile);
}
项目:Reer    文件:JsHint.java   
@OutputFile
public File getJsonReport() {
    return jsonReport == null ? null : getProject().file(jsonReport);
}
项目:Reer    文件:PackageListGenerator.java   
@OutputFile
public File getOutputFile() {
    return outputFile;
}
项目:Reer    文件:JacocoMerge.java   
/**
 * File to write merged execution data to.
 */
@OutputFile
public File getDestinationFile() {
    return destinationFile;
}
项目:Reer    文件:AbstractLinkTask.java   
/**
 * The file where the linked binary will be located.
 */
@OutputFile
public File getOutputFile() {
    return outputFile;
}
项目:Reer    文件:CreateStaticLibrary.java   
/**
 * The file where the output binary will be located.
 */
@OutputFile
public File getOutputFile() {
    return outputFile;
}
项目:Reer    文件:PrefixHeaderFileGenerateTask.java   
@OutputFile
public File getPrefixHeaderFile() {
    return prefixHeaderFile;
}
项目:Reer    文件:ValidateTaskProperties.java   
/**
 * Returns the output file to store the report in.
 */
@Optional @OutputFile
public File getOutputFile() {
    return outputFile == null ? null : getProject().file(outputFile);
}
项目:Reer    文件:OutputFilePropertyAnnotationHandler.java   
@Override
public Class<? extends Annotation> getAnnotationType() {
    return OutputFile.class;
}
项目:atlas    文件:ProcessAwoAndroidResources.java   
@OutputFile
@Optional
@Nullable
public File getPackageOutputFile() {
    return packageOutputFile;
}
项目:atlas    文件:ProcessAwoAndroidResources.java   
@OutputFile
@Optional
@Nullable
public File getProguardOutputFile() {
    return proguardOutputFile;
}
项目:atlas    文件:DexBuildTask.java   
@OutputFile
public File getOutputDexFile() {
    return outputDexFile;
}
项目:atlas    文件:DexInstallTask.java   
@OutputFile
public File getKernelSoFile() {
    return kernelSoFile;
}
项目:atlas    文件:AwoFullApkBuildTask.java   
@OutputFile
public File getOutApkFile() {
    return outApkFile;
}
项目:atlas    文件:MergeManifestAwbsConfigAction.java   
@OutputFile
protected File getManifestOutputFile() {
    return awbBundle.getMergedManifest();
}
项目:atlas    文件:ProcessAwbAndroidResources.java   
@OutputFile
@Optional
@Nullable
public File getPackageOutputFile() {
    return packageOutputFile;
}
项目:atlas    文件:ProcessAwbAndroidResources.java   
@OutputFile
@Optional
@Nullable
public File getProguardOutputFile() {
    return proguardOutputFile;
}
项目:atlas    文件:TPatchDiffApkBuildTask.java   
@OutputFile
public File getDiffAPkFile() {
    return diffAPkFile;
}
项目:shipkit    文件:SilentExecTask.java   
/**
 * See: {@link #getBuildOutput()}
 */
@OutputFile
public void setBuildOutputFile(File file) {
    buildOutput = file;
}
项目:wildfly-swarm    文件:PackageTask.java   
@OutputFile
private File getOutputFile() {
    return BuildTool.getOutputFile(getBaseName(), getOutputDirectory());
}
项目:gradle-postman-runner    文件:DeployNewmanWrapperTask.java   
@OutputFile
public File getWrapper() {
    return new NewmanWrapper(getProject()).getWrapperAbsolutePath();
}
项目:intellij-ce-playground    文件:JackTask.java   
@OutputFile
public File getJackFile() {
    return jackFile;
}
项目:intellij-ce-playground    文件:JackTask.java   
@OutputFile
@Optional
public File getMappingFile() {
    return mappingFile;
}
项目:intellij-ce-playground    文件:MergeResources.java   
@Optional
@OutputFile
public File getPublicFile() {
    return publicFile;
}
项目:intellij-ce-playground    文件:ZipAlign.java   
@OutputFile
public File getOutputFile() {
    return outputFile;
}
项目:intellij-ce-playground    文件:PackageApplication.java   
@OutputFile
public File getOutputFile() {
    return outputFile;
}
项目:intellij-ce-playground    文件:MockableAndroidJarTask.java   
@OutputFile
public File getOutputFile() {
   return mOutputFile;
}
项目:intellij-ce-playground    文件:MergeFileTask.java   
@OutputFile
public File getOutputFile() {
    return mOutputFile;
}
项目:intellij-ce-playground    文件:GenerateApkDataTask.java   
@OutputFile
public File getManifestFile() {
    return manifestFile;
}
项目:intellij-ce-playground    文件:StripDebugSymbolTask.java   
@OutputFile
public File getOutputFile() {
    return outputFile;
}