/** * 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")); }
/** The optional path to where an HTML report should be written */ @Override @Nullable @Optional @OutputFile public File getHtmlOutput() { return htmlOutput; }
/** The optional path to where an XML report should be written */ @Override @Nullable @Optional @OutputFile public File getXmlOutput() { return xmlOutput; }
@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"); }
@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; }
@OutputFile public File getOutputFile() { return outputFile; }
/** * Returns the file to write the wrapper script to. */ @OutputFile public File getScriptFile() { return getProject().file(scriptFile); }
/** * 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")); }
/** * Returns the file to write the wrapper jar file to. */ @OutputFile public File getJarFile() { return getProject().file(jarFile); }
@OutputFile public File getJsonReport() { return jsonReport == null ? null : getProject().file(jsonReport); }
/** * File to write merged execution data to. */ @OutputFile public File getDestinationFile() { return destinationFile; }
/** * The file where the linked binary will be located. */ @OutputFile public File getOutputFile() { return outputFile; }
/** * The file where the output binary will be located. */ @OutputFile public File getOutputFile() { return outputFile; }
@OutputFile public File getPrefixHeaderFile() { return prefixHeaderFile; }
/** * Returns the output file to store the report in. */ @Optional @OutputFile public File getOutputFile() { return outputFile == null ? null : getProject().file(outputFile); }
@Override public Class<? extends Annotation> getAnnotationType() { return OutputFile.class; }
@OutputFile @Optional @Nullable public File getPackageOutputFile() { return packageOutputFile; }
@OutputFile @Optional @Nullable public File getProguardOutputFile() { return proguardOutputFile; }
@OutputFile public File getOutputDexFile() { return outputDexFile; }
@OutputFile public File getKernelSoFile() { return kernelSoFile; }
@OutputFile public File getOutApkFile() { return outApkFile; }
@OutputFile protected File getManifestOutputFile() { return awbBundle.getMergedManifest(); }
@OutputFile public File getDiffAPkFile() { return diffAPkFile; }
/** * See: {@link #getBuildOutput()} */ @OutputFile public void setBuildOutputFile(File file) { buildOutput = file; }
@OutputFile private File getOutputFile() { return BuildTool.getOutputFile(getBaseName(), getOutputDirectory()); }
@OutputFile public File getWrapper() { return new NewmanWrapper(getProject()).getWrapperAbsolutePath(); }
@OutputFile public File getJackFile() { return jackFile; }
@OutputFile @Optional public File getMappingFile() { return mappingFile; }
@Optional @OutputFile public File getPublicFile() { return publicFile; }
@OutputFile public File getOutputFile() { return mOutputFile; }
@OutputFile public File getManifestFile() { return manifestFile; }