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 1.6.2 (latest)

1.6.2

Created 01 July 2024.

TeamCity dependencies plugin resolves project dependencies via local TeamCity server

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.jk1:tcdeps:1.6.2")
      }
    }
    
    apply(plugin = "com.github.jk1.tcdeps")
  • Applying plugins to all subprojects .