All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.yoomoney.gradle.plugins.library.ProjectExtraPropertiesHelper.kt Maven / Gradle / Ivy

Go to download

Gradle plugin by YooMoney. See README: https://github.com/yoomoney-gradle-plugins/library-project-plugin

There is a newer version: 7.3.1
Show newest version
package ru.yoomoney.gradle.plugins.library

import org.gradle.api.Project

/**
 * Получить значение extraProperty с именем [propertyName].
 * @throws IllegalArgumentException если настройка отсутствует
 */
fun Project.getRequiredExtraProperty(propertyName: String): String {
    val value = project.extensions.extraProperties[propertyName] as String?
    require(!value.isNullOrBlank()) {
        "property $propertyName is empty"
    }

    return value
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy