com.github.rodm.teamcity-dsl
                  Owner:
                  
                    
                    Rod MacKenzie
                  
                
Gradle plugin for generating TeamCity settings from a Kotlin DSL
https://github.com/rodm/gradle-teamcity-dsl-plugin
Sources: https://github.com/rodm/gradle-teamcity-dsl-plugin
Version 0.6 (latest)
Created 09 August 2017.
                Gradle plugin for generating TeamCity settings from a Kotlin DSL
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.github.rodm.teamcity-dsl") version "0.6"
}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("com.github.rodm.teamcity-dsl:com.github.rodm.teamcity-dsl.gradle.plugin:0.6") }It can then be applied in the precompiled script plugin:plugins { id("com.github.rodm.teamcity-dsl") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.github.rodm.teamcity-dsl:com.github.rodm.teamcity-dsl.gradle.plugin:0.6") } } apply(plugin = "com.github.rodm.teamcity-dsl")
- Applying plugins to all subprojects .