steps

fun steps(init: BuildSteps.() -> Unit)

Configures build steps

Example. Command line build step

See also script build step

steps {
script {
scriptContent = """echo "Hello world!""""
}
}



Example. Maven build step

See also Maven build step

maven {
goals = "clean package"
}

Parameters

init

function to initialize build steps