property

@Nullable
abstract fun property(propertyName: String): Any(source)

Returns the value of the given property. This method locates a property as follows:

  1. If this project object has a property with the given name, return the value of the property.
  2. If this project has an extension with the given name, return the extension.
  3. If this project's convention object has a property with the given name, return the value of the property.
  4. If this project has an extra property with the given name, return the value of the property.
  5. If this project has a task with the given name, return the task.
  6. Search up through this project's ancestor projects for a convention property or extra property with the given name.
  7. If not found, a MissingPropertyException is thrown.

Return

The value of the property, possibly null.

Parameters

propertyName

The name of the property.

See also

Throws

MissingPropertyException

When the given property is unknown.