org.gradle.api.tasks.Nested Java Examples

The following examples show how to use org.gradle.api.tasks.Nested. 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: JavaCompile.java    From javaide with GNU General Public License v3.0 5 votes vote down vote up
/**
 * Returns the tool chain that will be used to compile the Java source.
 *
 * @return The tool chain.
 */
@Nested
@Incubating
public JavaToolChain getToolChain() {
    if (toolChain != null) {
        return toolChain;
    }
    return getJavaToolChainFactory().forCompileOptions(getOptions());
}
 
Example #2
Source File: ContractVerifierExtension.java    From spring-cloud-contract with Apache License 2.0 4 votes vote down vote up
@Nested
public ContractRepository getContractRepository() {
	return contractRepository;
}
 
Example #3
Source File: DefaultTestTaskReports.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Nested
public DefaultJUnitXmlReport getJunitXml() {
    return (DefaultJUnitXmlReport) getByName("junitXml");
}
 
Example #4
Source File: NestedBeanPropertyAnnotationHandler.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Class<? extends Annotation> getAnnotationType() {
    return Nested.class;
}
 
Example #5
Source File: CompileOptions.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
/**
 * Returns options for running the compiler in a child process.
 */
@Nested
public ForkOptions getForkOptions() {
    return forkOptions;
}
 
Example #6
Source File: CompileOptions.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
/**
 * Returns options for generating debugging information.
 */
@Nested
public DebugOptions getDebugOptions() {
    return debugOptions;
}
 
Example #7
Source File: CompileOptions.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
/**
 * Returns options for running the compiler in a child process.
 */
@Nested
public ForkOptions getForkOptions() {
    return forkOptions;
}
 
Example #8
Source File: DefaultTestTaskReports.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Nested
public DefaultJUnitXmlReport getJunitXml() {
    return (DefaultJUnitXmlReport) getByName("junitXml");
}
 
Example #9
Source File: Cpd.java    From gradle-cpd-plugin with Apache License 2.0 4 votes vote down vote up
@Override
@Nested
public CpdReports getReports() {
    return reports;
}
 
Example #10
Source File: JGivenReportTask.java    From JGiven with Apache License 2.0 4 votes vote down vote up
@Nested
@Override
public JGivenReportsContainer getReports() {
    return reports;
}
 
Example #11
Source File: JGivenReportsContainer.java    From JGiven with Apache License 2.0 4 votes vote down vote up
@Nested
JGivenReport getHtml();
 
Example #12
Source File: JGivenReportsContainer.java    From JGiven with Apache License 2.0 4 votes vote down vote up
@Nested
JGivenReport getText();
 
Example #13
Source File: JapicmpTask.java    From japicmp-gradle-plugin with Apache License 2.0 4 votes vote down vote up
@Optional
@Nested
public RichReport getRichReport() {
    return richReport;
}
 
Example #14
Source File: NestedBeanPropertyAnnotationHandler.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
public Class<? extends Annotation> getAnnotationType() {
    return Nested.class;
}
 
Example #15
Source File: ScalaCompile.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
/**
 * Returns the Scala compilation options.
 */
@Nested
public ScalaCompileOptions getScalaCompileOptions() {
    return scalaCompileOptions;
}
 
Example #16
Source File: ScalaCompileOptions.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Nested
public IncrementalCompileOptions getIncrementalOptions() {
    return incrementalOptions;
}
 
Example #17
Source File: ScalaCompile.java    From Pushjet-Android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
/**
 * Returns the Java compilation options.
 */
@Nested
public CompileOptions getOptions() {
    return compileOptions;
}
 
Example #18
Source File: ContractVerifierExtension.java    From spring-cloud-contract with Apache License 2.0 4 votes vote down vote up
@Nested
public Dependency getContractDependency() {
	return contractDependency;
}
 
Example #19
Source File: ContractVerifierExtension.java    From spring-cloud-contract with Apache License 2.0 4 votes vote down vote up
@Nested
public PublishStubsToScm getPublishStubsToScm() {
	return publishStubsToScm;
}
 
Example #20
Source File: ContractVerifierExtension.java    From spring-cloud-contract with Apache License 2.0 4 votes vote down vote up
@Nested
public ContractRepository getContractRepository() {
	return contractRepository;
}
 
Example #21
Source File: StageAppYamlTask.java    From app-gradle-plugin with Apache License 2.0 4 votes vote down vote up
@Nested
public StageAppYamlExtension getStagingExtension() {
  return appYamlExtension;
}
 
Example #22
Source File: GenRepoInfoFileTask.java    From app-gradle-plugin with Apache License 2.0 4 votes vote down vote up
@Nested
public GenRepoInfoFileExtension getConfiguration() {
  return configuration;
}
 
Example #23
Source File: StageStandardTask.java    From app-gradle-plugin with Apache License 2.0 4 votes vote down vote up
@Nested
public StageStandardExtension getStageStandardExtension() {
  return stageStandardExtension;
}
 
Example #24
Source File: GeneratePublicMacrosManifest.java    From native-samples with Apache License 2.0 4 votes vote down vote up
@Nested
@Optional
public ListProperty<Macro> getMacros() {
    return macros;
}
 
Example #25
Source File: ClojureNRepl.java    From clojurephant with Apache License 2.0 4 votes vote down vote up
@Nested
public ForkOptions getForkOptions() {
  return forkOptions;
}
 
Example #26
Source File: ClojureCheck.java    From clojurephant with Apache License 2.0 4 votes vote down vote up
@Nested
public ForkOptions getForkOptions() {
  return forkOptions;
}
 
Example #27
Source File: ScalaCompileOptions.java    From pushfish-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
@Nested
public IncrementalCompileOptions getIncrementalOptions() {
    return incrementalOptions;
}
 
Example #28
Source File: ClojureCompile.java    From clojurephant with Apache License 2.0 4 votes vote down vote up
@Nested
public ClojureCompileOptions getOptions() {
  return options;
}
 
Example #29
Source File: ClojureScriptCompile.java    From clojurephant with Apache License 2.0 4 votes vote down vote up
@Nested
public ForkOptions getForkOptions() {
  return forkOptions;
}
 
Example #30
Source File: ClojureScriptCompile.java    From clojurephant with Apache License 2.0 4 votes vote down vote up
@Nested
public ClojureScriptCompileOptions getOptions() {
  return options;
}