org.gradle.api.provider.SetProperty Java Examples

The following examples show how to use org.gradle.api.provider.SetProperty. 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: PackagingExtension.java    From commerce-gradle-plugin with Apache License 2.0 4 votes vote down vote up
public SetProperty<String> getEnvironments() {
    return environments;
}
 
Example #2
Source File: GenerateLocalextensions.java    From commerce-gradle-plugin with Apache License 2.0 4 votes vote down vote up
@Input
public SetProperty<String> getCloudExtensions() {
    return cloudExtensions;
}
 
Example #3
Source File: ClojureCompile.java    From clojurephant with Apache License 2.0 4 votes vote down vote up
@Input
public SetProperty<String> getNamespaces() {
  return namespaces;
}
 
Example #4
Source File: ClojureCheck.java    From clojurephant with Apache License 2.0 4 votes vote down vote up
@Input
public SetProperty<String> getNamespaces() {
  return namespaces;
}
 
Example #5
Source File: ClojureBuild.java    From clojurephant with Apache License 2.0 4 votes vote down vote up
public SetProperty<String> getCheckNamespaces() {
  return checkNamespaces;
}
 
Example #6
Source File: ClojureBuild.java    From clojurephant with Apache License 2.0 4 votes vote down vote up
public SetProperty<String> getAotNamespaces() {
  return aotNamespaces;
}
 
Example #7
Source File: SamplesManifestTask.java    From native-samples with Apache License 2.0 4 votes vote down vote up
@Input
public SetProperty<String> getSampleDirs() {
    return sampleDirs;
}
 
Example #8
Source File: SamplesManifestTask.java    From native-samples with Apache License 2.0 4 votes vote down vote up
@Input
public SetProperty<String> getRepoDirs() {
    return repoDirs;
}