BuildStep
Represents TeamCity Build Step. Use concrete build step classes such as MavenBuildStep instead of this class.
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"
}
Constructors
Types
Specifies how build step should be executed in case of failures in other steps
Functions
Deletes all configured build step conditions
Configures build step conditions
Copies parameters of this object to the specified target
Creates an instance of this build step via reflection using a no argument constructor, used during copying. Throws an error if this class doesn't have a default constructor. Subclasses can override it to create an instance without using a default constructor.
Validates this object and reports found errors to the provided consumer