ru.yoomoney.gradle.plugins.library.ProjectExtraPropertiesHelper.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of library-project-plugin Show documentation
Show all versions of library-project-plugin Show documentation
Gradle plugin by YooMoney. See README: https://github.com/yoomoney-gradle-plugins/library-project-plugin
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