com.github.rodm.teamcity-server
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-beta-2a
1.5-beta-2a
Created 12 July 2022.
Gradle plugin for developing TeamCity plugins
Using the plugins DSL:
plugins {
id("com.github.rodm.teamcity-server") version "1.5-beta-2a"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.rodm:gradle-teamcity-plugin:1.5-beta-2a")
}
}
apply(plugin = "com.github.rodm.teamcity-server")
Using the plugins DSL:
plugins {
id "com.github.rodm.teamcity-server" version "1.5-beta-2a"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.rodm:gradle-teamcity-plugin:1.5-beta-2a"
}
}
apply plugin: "com.github.rodm.teamcity-server"