org.gradle.api.provider.ListProperty Java Examples
The following examples show how to use
org.gradle.api.provider.ListProperty.
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: GeneratePublicMacrosManifest.java From native-samples with Apache License 2.0 | 4 votes |
@Nested @Optional public ListProperty<Macro> getMacros() { return macros; }
Example #2
Source File: Make.java From native-samples with Apache License 2.0 | 4 votes |
public final ListProperty<String> getArguments() { return arguments; }
Example #3
Source File: InstallCondaPackagesTask.java From curiostack with MIT License | 4 votes |
@Input ListProperty<String> getPackages() { return packages; }
Example #4
Source File: AutotoolsExtension.java From native-samples with Apache License 2.0 | 4 votes |
public ListProperty<String> getMakeArguments() { return makeArguments; }
Example #5
Source File: AutotoolsExtension.java From native-samples with Apache License 2.0 | 4 votes |
public ListProperty<String> getConfigureArguments() { return configureArguments; }
Example #6
Source File: Make.java From native-samples with Apache License 2.0 | 4 votes |
public final ListProperty<String> getArguments() { return arguments; }
Example #7
Source File: ConfigureTask.java From native-samples with Apache License 2.0 | 4 votes |
@Input public ListProperty<String> getArguments() { return arguments; }
Example #8
Source File: ContractVerifierExtension.java From spring-cloud-contract with Apache License 2.0 | 4 votes |
public ListProperty<String> getExcludedFiles() { return excludedFiles; }
Example #9
Source File: ContractVerifierExtension.java From spring-cloud-contract with Apache License 2.0 | 4 votes |
public ListProperty<String> getIncludedFiles() { return includedFiles; }
Example #10
Source File: ContractVerifierExtension.java From spring-cloud-contract with Apache License 2.0 | 4 votes |
public ListProperty<String> getIgnoredFiles() { return ignoredFiles; }
Example #11
Source File: ContractVerifierExtension.java From spring-cloud-contract with Apache License 2.0 | 4 votes |
public ListProperty<String> getImports() { return imports; }
Example #12
Source File: ContractVerifierExtension.java From spring-cloud-contract with Apache License 2.0 | 4 votes |
public ListProperty<String> getStaticImports() { return staticImports; }
Example #13
Source File: GenerateAvroJavaTask.java From gradle-avro-plugin with Apache License 2.0 | 4 votes |
@Optional @Input public ListProperty<Class<? extends Conversion<?>>> getCustomConversions() { return customConversions; }
Example #14
Source File: DefaultAvroExtension.java From gradle-avro-plugin with Apache License 2.0 | 4 votes |
@Override public ListProperty<Class<? extends Conversion<?>>> getCustomConversions() { return customConversions; }
Example #15
Source File: AutotoolsExtension.java From native-samples with Apache License 2.0 | 4 votes |
public ListProperty<String> getMakeArguments() { return makeArguments; }
Example #16
Source File: ConfigureTask.java From native-samples with Apache License 2.0 | 4 votes |
@Input public ListProperty<String> getArguments() { return arguments; }
Example #17
Source File: AutotoolsExtension.java From native-samples with Apache License 2.0 | 4 votes |
public ListProperty<String> getMakeArguments() { return makeArguments; }
Example #18
Source File: AutotoolsExtension.java From native-samples with Apache License 2.0 | 4 votes |
public ListProperty<String> getConfigureArguments() { return configureArguments; }
Example #19
Source File: Make.java From native-samples with Apache License 2.0 | 4 votes |
public final ListProperty<String> getArguments() { return arguments; }
Example #20
Source File: ConfigureTask.java From native-samples with Apache License 2.0 | 4 votes |
@Input public ListProperty<String> getArguments() { return arguments; }
Example #21
Source File: AutotoolsExtension.java From native-samples with Apache License 2.0 | 4 votes |
public ListProperty<String> getMakeArguments() { return makeArguments; }
Example #22
Source File: AutotoolsExtension.java From native-samples with Apache License 2.0 | 4 votes |
public ListProperty<String> getConfigureArguments() { return configureArguments; }
Example #23
Source File: Make.java From native-samples with Apache License 2.0 | 4 votes |
public final ListProperty<String> getArguments() { return arguments; }
Example #24
Source File: ConfigureTask.java From native-samples with Apache License 2.0 | 4 votes |
@Input public ListProperty<String> getArguments() { return arguments; }
Example #25
Source File: ClojureNRepl.java From clojurephant with Apache License 2.0 | 4 votes |
@org.gradle.api.tasks.Optional @Input public ListProperty<String> getDefaultMiddleware() { return defaultMiddleware; }
Example #26
Source File: ClojureNRepl.java From clojurephant with Apache License 2.0 | 4 votes |
@org.gradle.api.tasks.Optional @Input public ListProperty<String> getMiddleware() { return userMiddleware; }
Example #27
Source File: CondaExtension.java From curiostack with MIT License | 4 votes |
/** Python packages to install into the build environment. */ ListProperty<String> getPythonPackages();
Example #28
Source File: CondaExtension.java From curiostack with MIT License | 4 votes |
/** Conda packages to install into the build environment. */ ListProperty<String> getPackages();
Example #29
Source File: InstallPythonPackagesTask.java From curiostack with MIT License | 4 votes |
@Input ListProperty<String> getPackages() { return packages; }
Example #30
Source File: HybrisPluginExtension.java From commerce-gradle-plugin with Apache License 2.0 | 4 votes |
public ListProperty<String> getBootstrapInclude() { return bootstrapInclude; }