blob: 950494d9944eb66d648aadf54a7ca31757e8c884 [file] [log] [blame] [edit]
/*
* Copyright 2017-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
def teamcitySuffix = project.findProperty("teamcitySuffix")?.toString()
if (!teamcityInteractionDisabled && project.hasProperty("teamcity") && !(build_snapshot_train || rootProject.properties['build_snapshot_up'])) {
// Tell teamcity about version number
def postfix = (teamcitySuffix == null) ? "" : " ($teamcitySuffix)"
println("##teamcity[buildNumber '${project.version}${postfix}']")
gradle.taskGraph.beforeTask {
println("##teamcity[progressMessage 'Gradle: ${it.project.path}:${it.name}']")
}
}