Search Gradle plugins

nu.studer.build-scan.teamcity

Gradle plugin for build scans that notifies TeamCity when a build scan is published during a build.

https://github.com/etiennestuder/gradle-build-scan-teamcity-plugin

Version 1.1 (latest)

Created 01 January 2020.

No version description available.

Add this plugin to your build using the plugins DSL:

plugins {
  id("nu.studer.build-scan.teamcity") version "1.1"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("nu.studer.build-scan.teamcity:nu.studer.build-scan.teamcity.gradle.plugin:1.1")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("nu.studer.build-scan.teamcity")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("nu.studer.build-scan.teamcity:nu.studer.build-scan.teamcity.gradle.plugin:1.1")
      }
    }
    
    apply(plugin = "nu.studer.build-scan.teamcity")
  • Applying plugins to all subprojects .