org.gradle.api.provider.MapProperty Java Examples

The following examples show how to use org.gradle.api.provider.MapProperty. 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: ContractVerifierExtension.java    From spring-cloud-contract with Apache License 2.0 4 votes vote down vote up
public MapProperty<String, String> getContractsProperties() {
	return contractsProperties;
}
 
Example #2
Source File: ContractVerifierExtension.java    From spring-cloud-contract with Apache License 2.0 4 votes vote down vote up
public MapProperty<String, String> getBaseClassMappings() {
	return baseClassMappings;
}
 
Example #3
Source File: GenerateAvroJavaTask.java    From gradle-avro-plugin with Apache License 2.0 4 votes vote down vote up
@Optional
@Input
public MapProperty<String, Class<? extends LogicalTypes.LogicalTypeFactory>> getLogicalTypeFactories() {
    return logicalTypeFactories;
}
 
Example #4
Source File: DefaultAvroExtension.java    From gradle-avro-plugin with Apache License 2.0 4 votes vote down vote up
@Override
public MapProperty<String, Class<? extends LogicalTypes.LogicalTypeFactory>> getLogicalTypeFactories() {
    return logicalTypeFactories;
}
 
Example #5
Source File: GolangExtension.java    From curiostack with MIT License votes vote down vote up
MapProperty<String, String> getEnvironmentVariables(); 
Example #6
Source File: AvroExtension.java    From gradle-avro-plugin with Apache License 2.0 votes vote down vote up
MapProperty<String, Class<? extends LogicalTypes.LogicalTypeFactory>> getLogicalTypeFactories();