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

app.softwork.kotlin.actions.ActionYmlSource.kt Maven / Gradle / Ivy

The newest version!
package app.softwork.kotlin.actions

import org.gradle.api.file.*
import org.gradle.api.provider.*

abstract class ActionYmlSource : ValueSource {
    interface Parameters : ValueSourceParameters {
        val actionFile: RegularFileProperty
    }

    override fun obtain(): ActionYml {
        val text = parameters.actionFile.asFile.get().readText()

        return json.decodeFromString(text.replace(replaceActionExpressions, "\"\""))
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy