ru.fix.gradle.release.plugin.UserInteractor.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-release-plugin Show documentation
Show all versions of gradle-release-plugin Show documentation
Plugin automatically creates branches and tags and changes version in project gradle.properties file.
package ru.fix.gradle.release.plugin
interface UserInteractor {
fun promptQuestion(prompt: String, default: String? = null): String
fun promptPassword(prompt: String): CharArray
fun info(msg: String)
fun error(msg: String)
}