com.github.rodm.teamcity
Owner: Rod MacKenzie
Plugin to help develop TeamCity plugins
Sources: https://github.com/rodm
Version 0.6 (latest)
0.6
Created 25 July 2015.
Gradle plugin to support the development of TeamCity plugins
Using the plugins DSL:
plugins {
id("com.github.rodm.teamcity") version "0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.rodm:gradle-teamcity-plugin:0.6")
}
}
apply(plugin = "com.github.rodm.teamcity")
Using the plugins DSL:
plugins {
id "com.github.rodm.teamcity" version "0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.rodm:gradle-teamcity-plugin:0.6"
}
}
apply plugin: "com.github.rodm.teamcity"