assign

Sets the ConfigurableFileCollection to contain the source paths of passed collection. This is the same as calling ConfigurableFileCollection.setFrom(fileCollection: FileCollection).

Since

8.2


fun <T> Property<T>.assign(value: T?)

Assign value: T to a property with assign operator

Since

8.2


fun <T> Property<T>.assign(value: Provider<out T?>)

Assign value: Provider to a property with assign operator

Since

8.2


Assign file to a FileSystemLocationProperty with assign operator

Since

8.2


Assign file provided by a Provider to a FileSystemLocationProperty with assign operator

Since

8.2


Sets the value of the property to the elements of the given iterable, and replaces any existing value

Since

8.2


fun <K, V> MapProperty<K, V>.assign(provider: Provider<out Map<out K?, V?>?>)

Sets the property to have the same value of the given provider, and replaces any existing value

Since

8.2


fun <K, V> MapProperty<K, V>.assign(entries: Map<out K?, V?>?)

Sets the value of this property to the entries of the given Map, and replaces any existing value

Since

8.2