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

ru.astrainteractive.gradleplugin.property.extension.ExtendedPropertyValueExt.kt Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package ru.astrainteractive.gradleplugin.property.extension

import org.gradle.api.JavaVersion
import ru.astrainteractive.gradleplugin.property.PropertyValue
import ru.astrainteractive.gradleplugin.property.extension.PrimitivePropertyValueExt.requireInt

object ExtendedPropertyValueExt {
    // JavaVersion
    val PropertyValue.javaVersion: Result
        get() = value.mapCatching { JavaVersion.toVersion(requireInt) }

    val PropertyValue.requireJavaVersion: JavaVersion
        get() = javaVersion.getOrThrow()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy