BuildOptions

data class BuildOptions(val buildCommand: String, val streamOutput: Boolean = false, val interactive: Boolean = false)

Options for build

Parameters

buildCommand

command to run such as "mvn test"

streamOutput

if true, the output will be streamed to the console

interactive

if true, gives full terminal control for interactive commands (Spring Boot, etc.)

Constructors

Link copied to clipboard
constructor(buildCommand: String, streamOutput: Boolean = false, interactive: Boolean = false)

Properties

Link copied to clipboard
Link copied to clipboard
val interactive: Boolean = false
Link copied to clipboard
val streamOutput: Boolean = false