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 |
public MapProperty<String, String> getContractsProperties() { return contractsProperties; }
Example #2
Source File: ContractVerifierExtension.java From spring-cloud-contract with Apache License 2.0 | 4 votes |
public MapProperty<String, String> getBaseClassMappings() { return baseClassMappings; }
Example #3
Source File: GenerateAvroJavaTask.java From gradle-avro-plugin with Apache License 2.0 | 4 votes |
@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 |
@Override public MapProperty<String, Class<? extends LogicalTypes.LogicalTypeFactory>> getLogicalTypeFactories() { return logicalTypeFactories; }
Example #5
Source File: GolangExtension.java From curiostack with MIT License | votes |
MapProperty<String, String> getEnvironmentVariables();
Example #6
Source File: AvroExtension.java From gradle-avro-plugin with Apache License 2.0 | votes |
MapProperty<String, Class<? extends LogicalTypes.LogicalTypeFactory>> getLogicalTypeFactories();