Search Gradle plugins

com.github.jk1.tcdeps

Gradle plugin to use JetBrains TeamCity server as an external dependency repository for Gradle builds. This comes in handy when existing artifact layout ignores any established conventions, so out-of-box repository types just can't handle it. The plugin makes use of default artifact cache, downloading each dependency only once.

https://github.com/jk1/TeamCity-dependencies-gradle-plugin

Version 0.14

Created 17 May 2017.

TeamCity dependencies plugin resolves project dependencies via local TeamCity server

Using the plugins DSL:

plugins {
  id("com.github.jk1.tcdeps") version "0.14"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.github.jk1:tcdeps:0.14")
  }
}

apply(plugin = "com.github.jk1.tcdeps")

Using the plugins DSL:

plugins {
  id "com.github.jk1.tcdeps" version "0.14"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.github.jk1:tcdeps:0.14"
  }
}

apply plugin: "com.github.jk1.tcdeps"

Learn how to apply plugins to subprojects