Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.rodm.teamcity-agent") version "1.5-beta-1a"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.rodm:gradle-teamcity-plugin:1.5-beta-1a")
      }
    }
    
    apply(plugin = "com.github.rodm.teamcity-agent")
  • Applying plugins to all subprojects .