Types

Link copied to clipboard

Maven version specified by the M2_HOME environment variable. If the environment variable is empty, then the default Maven version provided by TeamCity server will be used.

Link copied to clipboard

Use maven 2 bundled with TeamCity

Link copied to clipboard

Use maven 3.0.5 bundled with TeamCity

Link copied to clipboard

Use maven 3.1.1 bundled with TeamCity

Link copied to clipboard

Use maven 3.2.5 bundled with TeamCity

Link copied to clipboard

Use maven 3.3.9 bundled with TeamCity

Link copied to clipboard

Use maven 3.5.4 bundled with TeamCity

Link copied to clipboard

Use maven 3.6.3 bundled with TeamCity

Link copied to clipboard

Use maven 3.8.6 bundled with TeamCity

Link copied to clipboard

Use maven 3.9.6 bundled with TeamCity

Link copied to clipboard

The custom Maven version found at the specified path

Link copied to clipboard

In TeamCity 10.0 the meaning of this option was: Maven version specified in M2_HOME environment variable, if the environment variable is empty, then the Maven version 3.0.5. In TeamCity 2017.1 this option is renamed to auto(), please use it instead. If you want to always use the default Maven version provided by TeamCity server, switch to defaultProvidedVersion().

Link copied to clipboard

The default Maven version provided by TeamCity server

Properties

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun booleanParameter(customName: String? = null, trueValue: String? = "true", falseValue: String? = "false"): DelegateProvider<Boolean?>
Link copied to clipboard
fun clear()
Link copied to clipboard
fun <T : CompoundParam<T>> compoundParameter(customName: String? = null): DelegateProvider<T>
Link copied to clipboard
fun <T : Parametrized> copyParamsTo(target: T): T

Copies parameters of this object to the specified target

Link copied to clipboard
fun doubleParameter(customName: String? = null): DelegateProvider<Double>
Link copied to clipboard
fun <E : Enum<E>> enumParameter(customName: String? = null, mapping: Map<E, String?>? = null): DelegateProvider<E>
Link copied to clipboard
fun findRawParam(paramName: String): Parameter?
Link copied to clipboard
fun hasParam(paramName: String): Boolean
Link copied to clipboard
fun intParameter(customName: String? = null): DelegateProvider<Int>
Link copied to clipboard
fun param(name: String, value: String)

Adds parameter with specified name and value

Link copied to clipboard
fun removeRawParam(paramName: String)
Link copied to clipboard
open fun stringParameter(customName: String? = null): DelegateProvider<String>