com.github.rodm.teamcity-common
Owner: Rod MacKenzie
Gradle plugin to support the development of TeamCity plugins
https://github.com/rodm/gradle-teamcity-plugin
Sources: https://github.com/rodm/gradle-teamcity-plugin
Version 1.5.5 (latest)
1.5.5
Created 07 August 2024.
Gradle plugin for developing TeamCity plugins
Using the plugins DSL:
plugins {
id("com.github.rodm.teamcity-common") version "1.5.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.rodm:gradle-teamcity-plugin:1.5.5")
}
}
apply(plugin = "com.github.rodm.teamcity-common")
Using the plugins DSL:
plugins {
id "com.github.rodm.teamcity-common" version "1.5.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.rodm:gradle-teamcity-plugin:1.5.5"
}
}
apply plugin: "com.github.rodm.teamcity-common"